我需要将当前日期时间转换为ios8601格式,例如:
格式的日期和时间:01 Jan 2014 BST 12:00 PM
最终在我的jsp上,我希望将格式化的日期放在
中<time datetime="{date and time in ISO8601}">{date and time in format: 01 Jan 2014 BST 12:00 PM}</time>
我目前的尝试:
TimeZone tz = TimeZone.getTimeZone("BST");
DateFormat df = new SimpleDateFormat("dd-MM-yyyy'T'HH:mm'Z'");
df.setTimeZone(tz);
String nowAsISO = df.format(new Date());
但结果看起来不像我期望得到的......
答案 0 :(得分:2)
此模式将为您提供所需的信息:
SimpleDateFormat format = new SimpleDateFormat("dd MMM yyyy zzz HH:mm a");
format.setTimeZone(TimeZone.getTimeZone("Europe/London"));
System.out.println(format.format(new Date()));
打印:
01 Sep 2014 BST 15:37 PM
注意:我假设您正在寻找BST =英国夏令时,应该如上所述。如果您想要孟加拉国时间,请使用Asia/Dhaka
作为时区指示符。另请注意,英国夏令时在1月1日不生效(在您的示例中引用)。