2017-03-27 73 views
-6

我無法將自定義字符串格式化回Date對象。我有什麼:JAVA - 使用SimpleDateFormat格式化自定義字符串

String customString = "October 14, 2015; 

Date date = new Date(); 
SimpleDateFormat s = new SimpleDateFormat("MM-dd-yyyy"); 

try { 
date = s.parse(customString); 
} catch (ParseException e) { 
e.printStackTrace(); 
} 

我總是得到一個不可消除的日期異常。任何指針,我做錯了讚賞。

回答

1

你的模式必須是:new SimpleDateFormat("MMM dd,yyyy");

有關的SimpleDateFormat更多的信息請參閱javadoc

相關問題