有这样一个字符串:"20070911121547",
转换成时间格式:2007-09-11 12:15:47
- public class bb {
- public static void main(String[] args) {
- SimpleDateFormat df = new SimpleDateFormat("yyyyMMddhhmmss");
- String dateString = "20071128175545";
- try {
- Date date = df.parse(dateString);
- System.out.println(df.format(date));
- } catch (Exception ex) {
- System.out.println(ex.getMessage());
- }
- }
- }
时间无非就是字符串类型转向时间类型,或则时间类型转向字符串类型,还有就是前一个时间,后一个时间的处理等等
阅读(1195) | 评论(0) | 转发(0) |