Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个20130510T202132Z要转换为DateTime对象的字符串。
20130510T202132Z
DateTime
我一直在尝试使用 Joda 来让它工作,但我无法让它工作。我已经点击了我能找到的关于这个主题的每一个链接——并使用了格式化程序,但它根本不起作用。
做这个的最好方式是什么?
Joda Time 让这变得非常简单,因为它内置了对 ISO 格式的支持:
DateTimeFormatter iso = ISODateTimeFormat.basicDateTimeNoMillis(); DateTime dateTime = iso.parseDateTime(text);