使用 DateFormat 将字符串转换为日期

发布于 2024-12-20 21:32:03 字数 403 浏览 0 评论 0原文

我从 SOAP 消息中以字符串形式获取此日期,

"2009-12-02T12:58:38.415+01:00"

我可以识别并改变主题的大多数内容是

使用此格式 yyyy-MM-dd ? hh:mm:ss.??????

我尝试使用 SSS T z Z 而不是“?”的不同组合

DateFormat df = new SimpleDateFormat("... various formats ...");
System.out.println(df.parse("2009-12-02T12:58:38.415+01:00"));

,但没有成功。

有什么想法吗?

谢谢

I get this date as a string from SOAP message

"2009-12-02T12:58:38.415+01:00"

Most i could i could identify and vary on subject was

to play with this format yyyy-MM-dd ? hh:mm:ss.????

I tried different combinations using SSS T z Z instead of '?"

DateFormat df = new SimpleDateFormat("... various formats ...");
System.out.println(df.parse("2009-12-02T12:58:38.415+01:00"));

but no success.

Any idea ?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

柠檬色的秋千 2024-12-27 21:32:03

你必须更改时区部分。试试这个:

String a = "2009-12-02T12:58:38.415+01:00";
    a = a.replaceFirst(":(?=\\d+$)", "");
    final DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ");
    System.out.println(df.parse(a));

you have to change the timezone part. try this:

String a = "2009-12-02T12:58:38.415+01:00";
    a = a.replaceFirst(":(?=\\d+$)", "");
    final DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ");
    System.out.println(df.parse(a));
浸婚纱 2024-12-27 21:32:03

我认为使用标准 Java 日期格式这是不可能的。
使用 joda-time 可以使用以下代码完成此操作:

    DateTimeFormatterBuilder b = new DateTimeFormatterBuilder()
            .appendYear(4, 4).appendLiteral('-').appendMonthOfYear(2).appendLiteral('-').appendDayOfMonth(2)
            .appendLiteral('T')
            .appendHourOfDay(2).appendLiteral(':').appendMinuteOfHour(2).appendLiteral(':').appendSecondOfMinute(2)
            .appendLiteral('.').appendMillisOfSecond(3).appendTimeZoneOffset(null, true, 2, 2);
    DateTimeFormatter dateTimeParser = b.toFormatter();
    System.out.println(dateTimeParser.parseDateTime("2009-12-02T12:58:38.415+01:00"));

I don't think this is possible using the standard Java date formatting.
Using joda-time this can be done using the following code:

    DateTimeFormatterBuilder b = new DateTimeFormatterBuilder()
            .appendYear(4, 4).appendLiteral('-').appendMonthOfYear(2).appendLiteral('-').appendDayOfMonth(2)
            .appendLiteral('T')
            .appendHourOfDay(2).appendLiteral(':').appendMinuteOfHour(2).appendLiteral(':').appendSecondOfMinute(2)
            .appendLiteral('.').appendMillisOfSecond(3).appendTimeZoneOffset(null, true, 2, 2);
    DateTimeFormatter dateTimeParser = b.toFormatter();
    System.out.println(dateTimeParser.parseDateTime("2009-12-02T12:58:38.415+01:00"));
锦欢 2024-12-27 21:32:03

请尝试以下操作。

String date = "2009-12-02T12:58:38.415+01:00";
        int lastIndexOf = date.lastIndexOf(":");
        if(lastIndexOf>=0){
        date = date.substring(0,lastIndexOf)+date.substring(lastIndexOf+1);
        }
        System.out.println("~~~~~~date~~~~~"+date);
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'hh:mm:ss.SSSSZ");
        try {
            sdf.parse(date);
            System.out.println("....date..."+date);
        } catch (ParseException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

Try with the following.

String date = "2009-12-02T12:58:38.415+01:00";
        int lastIndexOf = date.lastIndexOf(":");
        if(lastIndexOf>=0){
        date = date.substring(0,lastIndexOf)+date.substring(lastIndexOf+1);
        }
        System.out.println("~~~~~~date~~~~~"+date);
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'hh:mm:ss.SSSSZ");
        try {
            sdf.parse(date);
            System.out.println("....date..."+date);
        } catch (ParseException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文