String chineseDateStr = "Wed Mar 01 2023 00:00:00 GMT+0800 (中国标准时间)"; // String chineseDateStr = "Wed Mar 01 2023 00:00:00 GMT+0800 (中国标准时间)"; chineseDateStr = chineseDateStr.replace("+", " "); SimpleDateFormat sf = new Simp
时间: 2023-03-25 15:00:18 浏览: 126
将中国标准时间转换成标准格式的代码
leDateFormat("EEE MMM dd yyyy HH:mm:ss 'GMT' Z '('z')'");
sf.setTimeZone(TimeZone.getTimeZone("GMT+8"));
Date date = sf.parse(chineseDateStr);
System.out.println(date);
这段代码的作用是将字符串类型的日期转换为Date类型,并且设置时区为中国标准时间(GMT+8)。最后输出转换后的Date对象。
阅读全文