java 日期格式-字符串 相互转化

1:字符串——>> 转换成时间

例:

  String time="1256006105375";

   Date  dt = null;

   SimpleDateFormat  sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

    dt= sdf.parse(time);

2:日期格式——>>转换字符串格式

例:

    Date date=new Date();  

   SimpleDateFormat formatter=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");  

   String time=formatter.format(date);    

3:字符串格式 ——>>转化为某种标准的日期字符串格式   例:转换为:yyyy-MM-dd HH:mm:ss

例:

  String time="1256006105375";

   Date  dt = new Date(time);

   SimpleDateFormat  sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

    time = sdf.format(dt);


注:日期格式向字符串格式转化  format();

      字符串格式向日期格式转化  parse();





你可能感兴趣的:(java 日期格式-字符串 相互转化)