在Java 中解析帶有偏移量和冒號的ISO-8601 DateTime
問題:
解析當遇到非常規格式時,Java 中的日期時間可能會具有挑戰性。我們如何解析帶有偏移量和冒號的ISO-8601 格式的日期時間字串,例如“2013-04-03T17:04:39.9430000 03:00”,並將其轉換為所需的格式“dd.MM .yyyy” HH:mm"?
答案:
指定的格式確實是資料交換中常用的ISO-8601 標準。格式化它,我們可以利用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中文網其他相關文章!