views:

4782

answers:

5

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.

+1  A: 

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

adi92
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.
Paul
A: 

iterate trhought the bidimensional array and use "\t" to define columns

Inserting '\t' is not a reliable way to visually separate columns, let alone achieve right-justification.
Chris Conway
+3  A: 

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.

PhiLho
Dynamically-generated format strings... Smacking my forehead... :-)
Chris Conway
I am glad I pushed you in the right direction! ;-)
PhiLho
+2  A: 

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]);
    }
  }
}
Chris Conway
+1  A: 

what is there is an additional requirement that if one of the feilds which is long needs to span through multiple lines, then what is to be done

MJ