假设您有一些表格数据,其中数据长度可能会有所不同,Formatter 类是否提供了自动调整填充的规定?
所以代替这个(注意A列):
columnA columnB
1 34.34
10 34.34
100 34.34
1000 34.34
你得到这个(注意B列):
columnA columnB
1 34.34
10 34.34
100 34.34
1000 34.34
到目前为止,我已经尝试过仅包含 %5s %5s 之间的空格,但它们是静态的,不会调整以产生我想要的结果。我的印象是 %5s 中的 5 会自动填充 5 个空格
Formatter formatter = new Formatter();
formatter.format("%5s %5s", columnAdata, columnBdata);