A simple solution that springs to mind is to have a String
block of spaces:
String indent = " "; // 20 spaces.
When printing out a string, compute the actual indent and add it to the end:
String output = "Newspaper";
output += indent.substring(0, indent.length - output.length);
This will mediate the number of spaces to the string, and put them all in the same column.