感谢。
系统默认的区域设置差异。
SimpleDateFormat sdf = new SimpleDateFormat(" MMM d,yyyy h:mm:ss a",Locale.ENGLISH);
得到解决。
字符串到日期错误
字符串: let dictionary = NSDictionary(contentsOfFile: Bundle.main.pathForResource("levelList", ofType: "plist")!);
let array = dictionary?["arrayKey"] as! NSArray
print("dictionary=", dictionary, "\narray =", array)
Feb 13, 2017 10:25:43 AM
或SimpleDateFormat sdf = new SimpleDateFormat("MMM dd, yyyy h:mm:ss a");
,MMM d, yyyy h:mm:ss a
,MMM d, yyyy hh:mm:ss a
,MMM dd, yyyy h:mm:ss a
,MMM dd, yyyy hh:mm:ss a
,MMM dd, yyyy H:mm:ss a
...等
ParseException :::::无法解释的日期:" 2017年2月13日上午10:25:43"
帮助。
答案 0 :(得分:0)
LocalDateTime.parse(
"Feb 13, 2017 10:25:43 AM" ,
DateTimeFormatter.ofPattern( "MMM d, uuuu hh:mm:ss a" , Locale.US )
)
2017-02-13T10:25:43
你正在使用现在遗留下来的麻烦的旧日期时间类,取而代之的是 java.time 类。
指定格式设置模式以匹配您的输入。请注意,我们传递Locale
来指定用于翻译月份名称等的人类语言和文化规范。
String input = "Feb 13, 2017 10:25:43 AM" ;
DateTimeFormatter f = DateTimeFormatter.ofPattern( "MMM d, uuuu hh:mm:ss a" , Locale.US ) ;
您的输入字符串缺少任何时区指示符或与UTC的偏移量。因此解析为LocalDateTime
。
LocalDateTime ldt = LocalDateTime.parse( input , f );
ldt.toString():2017-02-13T10:25:43
顺便说一句,如果您的输入在一年之后有逗号,您可以使用自动本地化的格式化程序进行解析,而不是费心去定义格式化模式。这个逗号显然是美国的标准(至少)。
String input = "Feb 13, 2017, 10:25:43 AM" ; // With a comma after year, apparently the norm in the United States.
DateTimeFormatter f = DateTimeFormatter.ofLocalizedDateTime( FormatStyle.MEDIUM ).withLocale( Locale.US )
LocalDateTime ldt = LocalDateTime.parse( input , f );
java.time框架内置于Java 8及更高版本中。这些类取代了麻烦的旧legacy日期时间类,例如java.util.Date
,Calendar
和& SimpleDateFormat
现在位于Joda-Time的maintenance mode项目建议迁移到java.time类。
要了解详情,请参阅Oracle Tutorial。并搜索Stack Overflow以获取许多示例和解释。规范是JSR 310。
您可以直接与数据库交换 java.time 对象。使用符合JDBC driver或更高版本的JDBC 4.2。不需要字符串,不需要java.sql.*
类。
从哪里获取java.time类?
ThreeTen-Extra项目使用其他类扩展java.time。该项目是未来可能添加到java.time的试验场。您可以在此处找到一些有用的课程,例如Interval
,YearWeek
,YearQuarter
和more。