在Android 中將ISO 8601 字串轉換為日期物件
從Web 服務接收ISO 8601 格式的日期/時間資料時,通常有必要將其轉換為適當的對象,例如日期或時間。這樣可以有效地儲存和操作時間資訊。
解決方案:
要將ISO 8601 字串轉換為Date 對象,請使用以下程式碼:
<code class="java">String dtStart = "2010-10-15T09:27:37Z"; SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'"); try { Date date = format.parse(dtStart); System.out.println(date); } catch (ParseException e) { e.printStackTrace(); }</code>
在此範例中:
一旦有了 Date 對象,您就可以輕鬆地將其轉換為其他格式或執行日期操作操作。例如,要將日期格式化為不同格式的字串,請再次使用 SimpleDateFormat 類別:
<code class="java">SimpleDateFormat outputFormat = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss"); String output = outputFormat.format(date);</code>
以上是如何在 Android 中將 ISO 8601 字串轉換為日期物件?的詳細內容。更多資訊請關注PHP中文網其他相關文章!