java按照指定格式输出系统时间使用SimpleDateFormat方法
Posted 背起全世界の蜗牛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java按照指定格式输出系统时间使用SimpleDateFormat方法相关的知识,希望对你有一定的参考价值。
public class TimeThree {
public static void main(String[] args) {
SimpleDateFormat d = new SimpleDateFormat("yyyy-MM-dd E HH:mm:ss");
Date date = new Date();
d.format(date);
System.out.println(date);
}
}
以上是关于java按照指定格式输出系统时间使用SimpleDateFormat方法的主要内容,如果未能解决你的问题,请参考以下文章