当前位置: 代码迷 >> J2SE >> Date时间类型转换,该怎么处理
  详细解决方案

Date时间类型转换,该怎么处理

热度:68   发布时间:2016-04-24 01:44:33.0
Date时间类型转换
现在有这样一个时间类型 Fri Feb 24 15:00:00 CST 2012 我现在想只要年月日(去掉时分秒) 求转换方法 并且转换后保证是Date类型

------解决方案--------------------
Java code
        String date = "Fri Feb 24 15:00:00 CST 2012";        String pattern = "EEE MMM dd hh:mm:ss zzz yyyy";                SimpleDateFormat f = new SimpleDateFormat(pattern);                SimpleDateFormat f2 = new SimpleDateFormat("yyyy-MM-dd");        System.out.println(f2.format(f.parse(date)));
  相关解决方案