Say you have some tabular data where the datas length can vary, is there a provision with the Formatter class to auto adjust the padding?
So instead of this (note column A):
columnA columnB
1 34.34
10 34.34
100 34.34
1000 34.34
You get this (note column B):
columnA columnB
1 34.34
10 34.34
100 34.34
1000 34.34
Thus far, i've tried this which only simply includes the spaces between %5s %5s, but they are static and do not adjust to produce the results I want. I was under the impression that the 5 in %5s would auto pad 5 spaces
Formatter formatter = new Formatter();
formatter.format("%5s %5s", columnAdata, columnBdata);