ISO 8601:在Android 解析日期/時間
使用Web 服務或API 時,您可能會遇到ISO 中的日期/時間字串8601 格式。該標準以一致的方式表示日期和時間。在 Android 中,您可以輕鬆地將 ISO 8601 字串解析為日期或時間物件。
第1 步:建立ISO 8601 格式化程式
<code class="java">SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");</code>
步驟2:解析字串
<code class="java">String dtStart = "2010-10-15T09:27:37Z"; try { Date date = format.parse(dtStart); System.out.println(date); } catch (ParseException e) { e.printStackTrace(); }</code>
SimpleDateFormat 類別提供了parse() 方法將ISO 8601 字串轉換為Date 物件。該物件表示解析的日期/時間。
<code class="java">SimpleDateFormat outputFormat = new SimpleDateFormat("MM/dd/yyyy"); String formattedDate = outputFormat.format(date);</code>
第3 步:格式化輸出
取得Date 物件後,您可以依照您需要的任何方式進行格式化: 在此範例中,建立了SimpleDateFormat 物件outputFormat 以將日期格式化為「MM/dd/yyyy」格式。然後使用 format() 方法將格式應用於日期對象,從而產生格式化字串 formattedDate。以上是如何在 Android 中解析和格式化 ISO 8601 日期和時間?的詳細內容。更多資訊請關注PHP中文網其他相關文章!