java中simpledateforma啥意思
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中simpledateforma啥意思相关的知识,希望对你有一定的参考价值。
SimpleDateFormat格式化日期import java.text.SimpleDateFormat;
import java.util.Date;
public class test
public static void main(String []aa)
SimpleDateFormat dateformat1=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss E");
String a1=dateformat1.format(new Date());
System.out.println("时间2:"+a1);
System.out.println(new Date().getYear()+1900);
SimpleDateFormat dateformat2=new SimpleDateFormat("yyyy年MM月dd日 HH时mm分ss秒 E ");
String a2=dateformat2.format(new Date());
System.out.println("时间2:"+a2);
执行结果:
时间2:2006-12-21 14:40:59 星期四
2006
时间2:2006年12月21日 14时40分59秒 星期四 参考技术A 对日期进行格式化的,如:
public static void main(String[] args)
Date date = new Date();
System.out.println(date);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd:hh-mm-ss");
System.out.println(sdf.format(date));
结果是:Fri Oct 24 18:33:46 CST 2014
2014-10-24:06-33-46
以上是关于java中simpledateforma啥意思的主要内容,如果未能解决你的问题,请参考以下文章
4线串行接口是啥意思,SI4模式指的是否SPI模式?Sitronix7036的LCD驱动芯片,很急