Java字符串右对齐
我有一个由这些数字组成的数组,
61672
8414449
264957
我使用像这样的 DecimalFormat
对象
DecimalFormat formatter = new DecimalFormat("###,### bytes");
来获取这些结果
61,672 bytes
8,414,449 bytes
264,957 bytes
,但我需要将结果向右对齐,如下所示
61,672 bytes
8,414,449 bytes
264,957 bytes
。非常感谢您的帮助。
I have an array of these numbers
61672
8414449
264957
I use a DecimalFormat
object like this
DecimalFormat formatter = new DecimalFormat("###,### bytes");
to get these results
61,672 bytes
8,414,449 bytes
264,957 bytes
but I need the results to be aligned to right like the following
61,672 bytes
8,414,449 bytes
264,957 bytes
Your help is already appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将其包装到
String.format
调用中,如下所示:You can wrap it into a
String.format
call like this: