如何使用SimpleDateFormat类解决时间格式化问题?

如何使用simpledateformat类解决时间格式化问题?

解决时间格式化问题

在处理时间格式时,可以使用 simpledateformat 类。以下是该类使用示例:

代码:

date dtnow = new date();
simpledateformat sdf1 = new simpledateformat("yyyy-mm-dd hh:mm:ss");
string mydt = sdf1.format(dtnow.gettime());
system.out.println(mydt);

simpledateformat sdf2 = new simpledateformat("yyyy年mm月dd日 hh时mm分ss秒");
mydt = sdf2.format(dtnow.gettime());
system.out.println(mydt);

执行结果:

2023-03-08 10:21:34
2023年03月08日 10时21分34秒

如上所示,通过不同的时间格式化模式,可以得到不同的时间格式化结果。

以上就是如何使用SimpleDateFormat类解决时间格式化问题?的详细内容,更多请关注其它相关文章!