数据对齐问题,用string.format没办法对齐,求教
答案:2 悬赏:30 手机版
解决时间 2021-12-31 13:45
- 提问者网友:世勋超人
- 2021-12-30 22:37
数据对齐问题,用string.format没办法对齐,求教
最佳答案
- 五星知识达人网友:归鹤鸣
- 2021-12-30 23:27
Java formatter format对齐方法,不支持中文对齐,因为中文的宽度都是不一定的,不像字母的宽度都是一样的。可以采用百分比的方式来对齐汉字
public void printTotal() {
f.format("%-15s %5s %8.2f\n", "Tax", "", total*0.06);//百分比
f.format("%-15s %5s %8s\n", "", " ", "-----");
f.format("%-15s %5s %8.2f\n", "Total", "", total*1.06);
}
public static void main(String[] args) {
Test t = new Test();
t.printTitle();
t.print("xigua", 5, 10);
t.print("bi", 2, 1.50);
t.print("kuangquanshui", 6, 1);
t.printTotal();
}
public void printTotal() {
f.format("%-15s %5s %8.2f\n", "Tax", "", total*0.06);//百分比
f.format("%-15s %5s %8s\n", "", " ", "-----");
f.format("%-15s %5s %8.2f\n", "Total", "", total*1.06);
}
public static void main(String[] args) {
Test t = new Test();
t.printTitle();
t.print("xigua", 5, 10);
t.print("bi", 2, 1.50);
t.print("kuangquanshui", 6, 1);
t.printTotal();
}
全部回答
- 1楼网友:大漠
- 2021-12-30 23:58
期待看到有用的回答!
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯