在 Java 中解析带有偏移量和冒号的 ISO-8601 DateTime
问题:
解析当遇到非常规格式时,Java 中的日期时间可能会具有挑战性。我们如何解析带有偏移量和冒号的 ISO-8601 格式的日期时间字符串,例如“2013-04-03T17:04:39.9430000 03:00”,并将其转换为所需的格式“dd.MM.yyyy” HH:mm"?
答案:
指定的格式确实是数据交换中常用的 ISO-8601 标准。要在 Java 中解析和重新格式化它,我们可以利用 SimpleDateFormat 类:
<code class="java">import java.text.SimpleDateFormat; import java.util.Date; // Example date time string in ISO-8601 format String isoDateTime = "2013-04-03T17:04:39.9430000+03:00"; // Create SimpleDateFormat objects for input and output formatting SimpleDateFormat inFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ"); SimpleDateFormat outFormat = new SimpleDateFormat("dd.MM.yyyy HH:mm"); // Parse the ISO-8601 date time string into a Date object Date dtIn = inFormat.parse(isoDateTime); // Convert the Date object to the desired format String dtOut = outFormat.format(dtIn); // Output the converted date time in the desired format System.out.println(dtOut);</code>
在此代码中:
以上是如何在 Java 中解析带有偏移量和冒号的 ISO-8601 DateTime?的详细内容。更多信息请关注PHP中文网其他相关文章!