个人备忘--时间格式的相互转换

String time = "20120112151403";
SimpleDateFormat fomat = new SimpleDateFormat("yyyyMMddHHmmss");
Date date = fomat.parse(time);
fomat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
System.out.println(fomat.format(date));


你可能感兴趣的:(Date,String)