3

What is the best way to print the cells of a String[][] array as a right-justified table? For example, the input

{ { "x", "xxx" }, { "yyy", "y" }, { "zz", "zz" } }

should yield the output

  x xxx
yyy   y
 zz  zz

This seems like something that one should be able to accomplish using java.util.Formatter, but it doesn't seem to allow non-constant field widths. The best answer will use some standard method for padding the table cells, not the manual insertion of space characters.

6
  • Smells like homework - wording of the question is like an assignment? Commented Nov 8, 2008 at 22:57
  • Stackoverflow is for questions. This is an order. if you are going to try and have people do your homework for you, at least put the effort in to make it not look like it =) Commented Nov 8, 2008 at 23:03
  • 1) It's not homework. 2) The question is implicit: insert "how do I" in front of the text of the question. Commented Nov 8, 2008 at 23:32
  • Have you even attempted it? What part are you struggling with? Commented Nov 8, 2008 at 23:33
  • @TheSoftwareJedi The part where some printf-like method in the JDK does the hard work for me, instead of manually diddling with spaces. Commented Nov 8, 2008 at 23:41

3 Answers 3

8

Here's an answer, using dynamically-generated format strings for each column:

public static void printTable(String[][] table) {
  // Find out what the maximum number of columns is in any row
  int maxColumns = 0;
  for (int i = 0; i < table.length; i++) {
    maxColumns = Math.max(table[i].length, maxColumns);
  }

  // Find the maximum length of a string in each column
  int[] lengths = new int[maxColumns];
  for (int i = 0; i < table.length; i++) {
    for (int j = 0; j < table[i].length; j++) {
      lengths[j] = Math.max(table[i][j].length(), lengths[j]);
    }
  }

  // Generate a format string for each column
  String[] formats = new String[lengths.length];
  for (int i = 0; i < lengths.length; i++) {
   formats[i] = "%1$" + lengths[i] + "s" 
       + (i + 1 == lengths.length ? "\n" : " ");
 }

  // Print 'em out
  for (int i = 0; i < table.length; i++) {
    for (int j = 0; j < table[i].length; j++) {
      System.out.printf(formats[j], table[i][j]);
    }
  }
}
Sign up to request clarification or add additional context in comments.

Comments

4

Indeed, if you specify a width for the fields, it should be right-justified.
If you need to have a dynamic padding, minimal for the longest string, you have to walk the array, getting the maximal width, generate the format string with the width computed from this maxima, and use it for format the output.

1 Comment

Dynamically-generated format strings... Smacking my forehead... :-)
1

find the length of the longest string..
left pad all the strings with spaces until they r that length + 1
System.out.print them using 2 nested for loops

1 Comment

Need to keep the length of the longest string in each column, probably, but otherwise close enough. Also, use printf to do the left-padding - question was tagged with printf.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.