为什么输出不一样?
Date currentTrueSystemDate = Calendar.getInstance().getTime();
SimpleDateFormat sdf = new SimpleDateFormat("dd-MMM-yyyy hh:mm:ss");
sdf.setTimeZone(TimeZone.getTimeZone("Asia/Kuwait"));
String newConvertedDate = sdf.format(currentTrueSystemDate.getTime());
System.out.println(newConvertedDate);
try {
Date newConvertedDate2 = sdf.parse(newConvertedDate);
System.out.println(newConvertedDate2);
} catch (ParseException e) {
System.out.println(e.getLocalizedMessage());
}
输出:
I/System.out: 27-Sep-2018 09:16:52
I/System.out: Thu Sep 27 07:16:52 GMT+01:00 2018
我将“newConvertedDate”从字符串转换为日期的原因是因为我想在其上使用.before和.after函数。我不明白为什么将字符串解析为日期会改变时间?
相关分类