java按照指定格式输出系统时间
Posted 背起全世界の蜗牛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java按照指定格式输出系统时间相关的知识,希望对你有一定的参考价值。
public class TimeFour {
public static void main(String[] args) throws ParseException{
TimeFour four = new TimeFour();
four.test();
}
public void test() throws ParseException{
Date date = new Date();
DateFormat df3 = new SimpleDateFormat("yyy-MM-dd HH-mm-ss");
DateFormat df4 = new SimpleDateFormat("yyy年MM月dd日 HH时mm分ss秒");
System.out.println("按照指定格式 yyyy年MM月dd日 hh时mm分ss秒 ,区域为中文:" + df4.format(date));
System.out.println("按照指定格式 yyyy年MM月dd日 hh时mm分ss秒 ,区域为中文:" + df3.format(date));
Date date4 = df4.parse("2007年11月30日 02时51分18秒");
System.out.println(date4);
}
}
以上是关于java按照指定格式输出系统时间的主要内容,如果未能解决你的问题,请参考以下文章