有没有一些简单的方法可以在 Java 中填充字符串?
似乎应该在一些类似 StringUtil 的 API 中,但我找不到任何这样做的东西。
Apache有StringUtils几种方法:leftPad、rightPad和。centerrepeat
StringUtils
leftPad
rightPad
center
repeat
但请注意,“正如其他人提到和演示的那样”,JDK中String.format()的Formatter类是更好的选择。在公共代码上使用它们。
String.format()
Formatter