是否有任何现有的实用程序,如 Apache Commons StringUtils 可以轻松增加整数,但将其输出为零填充字符串?
我当然可以使用类似的东西编写自己的东西String.format("%05d", counter)
,但我想知道是否有一个库已经提供了这个。
我正在设想我可以像这样使用的东西:
// Create int counter with value of 0 padded to 4 digits
PaddedInt counter = new PaddedInt(0,4);
counter.incr();
// Print "0001"
System.out.println(counter);
// Print "0002"
System.out.println(counter.incr());
String text = "The counter is now "+counter.decr();
// Print "The counter is now 0001"
System.out.println(text);