使用 Java 解析带偏移冒号的 ISO-8601 DateTime
当遇到 ISO-8601 格式的日期和时间字符串,其中包括偏移量中的冒号,在 Java 中解析它可能具有挑战性。考虑以下格式的日期和时间字符串的具体情况:
2013-04-03T17:04:39.9430000 03:00
要成功解析此字符串并将其转换为更可读的格式,例如“dd.MM.yyyy HH:mm”,我们可以利用Java的SimpleDateFormat类。
下面的Java代码演示了如何解析和重新格式化日期和时间字符串:
import java.text.SimpleDateFormat;
import java.util.Date;
public class Iso8601DateTimeParser {
public static void main(String[] args) {
// Input date string in ISO-8601 format
String dateString = "2013-04-03T17:04:39.9430000 03:00";
// Create SimpleDateFormat objects for input and output formats
SimpleDateFormat inFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ");
SimpleDateFormat outFormat = new SimpleDateFormat("dd.MM.yyyy HH:mm");
try {
// Parse the input date string into a Date object
Date dtIn = inFormat.parse(dateString);
// Reformat the Date object to the desired output format
String dtOut = outFormat.format(dtIn);
// Print the reformatted date string
System.out.println("Reformatted Date: " dtOut);
} catch (ParseException e) {
// Handle parsing exception
System.err.println("Error parsing date string: " e.getMessage());
}
}
}
此代码片段完成以下步骤:
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3