Java: How to get current date in ISO 8601 SECOND format(Java:如何以 ISO 8601 SECOND 格式获取当前日期)
问题描述
我需要在 ISO 8601 中以 SS 毫秒 和 HH:MM 时区
I need to get the current date in ISO 8601 with SS milliseconds and HH:MM timezone
完整的日期加上小时、分钟、秒和 a 的小数部分第二:YYYY-MM-DDThh:mm:ss.sTZD(例如 1997-07-16T19:20:30.45+01:00)
Complete date plus hours, minutes, seconds and a decimal fraction of a second: YYYY-MM-DDThh:mm:ss.sTZD (eg 1997-07-16T19:20:30.45+01:00)
参见:http://www.w3.org/TR/NOTE-datetime一个>
我尝试了不同的方法,但我无法获得正确的毫秒数&时区数字:
i tried different approaches, but i cannot get the correct milliseconds & timezone digits:
DateFormat df=new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSZZ");
df.setTimeZone(TimeZone.getTimeZone("UTC"));
df.format(new Date());
JAVA 结果: 2012-11-24T21:19:27.758+0000
JAVA result: 2012-11-24T21:19:27.758+0000
Apache 结果: 2012-11-24T21:19:27.758+00:00(Apache Commons FastDateFormat)
Apache result: 2012-11-24T21:19:27.758+00:00 (Apache Commons FastDateFormat)
推荐答案
其实JDK中有一个类处理ISO8601的解析和格式化:
Actually there is a class in JDK that handles parsing and formatting ISO8601:
import javax.xml.bind.DatatypeConverter;
DatatypeConverter.printDateTime(new GregorianCalendar())
//2012-11-24T22:42:03.142+01:00
这篇关于Java:如何以 ISO 8601 SECOND 格式获取当前日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java:如何以 ISO 8601 SECOND 格式获取当前日期
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01