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.
我有来自服务器的日期,由类似字符串表示"Thu Oct 31 2013 00:00:00 GMT+0200",我必须在Date对象中解析它。我使用DateTimeFormat类进行日期操作。
"Thu Oct 31 2013 00:00:00 GMT+0200"
Date
DateTimeFormat
问题是我只能在英语语言环境中解析它。在任何其他语言环境中,我IllegalArgumentException将从 parse 方法中获得,并且我无法为解析设置正确的语言环境。
IllegalArgumentException
我怎样才能做到这一点?
您必须了解模式并为您想尝试的每个语言环境/模式创建一个实例:
如何使用 GWT 将日期时间字符串转换为日期?