日期格式中月份和日期的固定长度?
有没有什么方法可以将日期对象格式化为固定长度的日和月,以便在列中良好对齐? 例如:
15 May 2010 10 January 2010
而不是
15 May 2010 10 January 2010
谢谢!
Is there any way to format Date object to made fixed length of Day and Month in order to have good alignment in a column?
For example:
15 May 2010 10 January 2010
Instead of
15 May 2010 10 January 2010
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 java.util.Formatter 类,其 format 方法与 String.format(...) 相同,与 System.out.printf 类似。
例如:
Have a look at the java.util.Formatter class whose format method is the same as String.format(...) and similar to System.out.printf.
For example: