I'm getting results from a database and want to output the data as a table in Java's standard output
I've tried using \t but the first column I want is very variable in length.
Is there a way to display this in a nice table like output?
|
I'm getting results from a database and want to output the data as a table in Java's standard output I've tried using \t but the first column I want is very variable in length. Is there a way to display this in a nice table like output?
| |||
|
feedback
|
|
Use
This pads See the Javadocs for | |||||||||||
feedback
|
|
Check out the class java.util.Formatter. | |||
|
feedback
|
|
In short - No, because you have no knowledge of the tab size or even whether the console is using a fixed width font. However, assuming it is using a fixed width font, it should be fairly straightforward to pad each cell value with spaces to ensure that all cells in a given column are the same width. | |||
|
feedback
|