1. 程式人生 > >[Java] 字串格式化

[Java] 字串格式化

例子:

String s = String.format("%7.2f%6d%-4s", 45.556, 14, "AB");
System.out.println(s);

負號表示左對齊, 顯示:_ _ 45.56_ _ _ _ 14AB_ __表示空格

System.out.printf(format, item1, item2, ..., itemk);

等價於:

System.out.print(String.format(format, item1, item2, ..., itemk));

Introduction to Java Programming 10.th, 10.10.7