2013-07-31 40 views
-1

SimpleDateFormat中用於解析字符串的格式是什麼,即07/12/2013轉換爲日期類型?我正在使用下面的代碼,但所需的格式不是comimg。如何解析一個字符串到日期?

SimpleDateFormat formatter ; 
Date notBeforeDate ,notAfterDate; 
formatter = new SimpleDateFormat("DD/MM/YYYY"); 
notBeforeDate = (Date)formatter.parse(notBeforeValue); 
notAfterDate = (Date)formatter.parse(notAfterValue); 
+2

[Java字符串到日期轉換]的可能重複(http://stackoverflow.com/questions/4216745/java-string-to-date-conversion) – Shashi

回答

2

假設您正在尋找Java解決方案。更改格式字符串:

DateFormat formatter = new SimpleDateFormat("dd/MM/yyyy"); 
Date date = formatter.parse("07/12/2013"); 

請參閱documentation以獲取確切的格式字符串信息。

1

試試這個:

SimpleDateFormat formatter=new SimpleDateFormat("dd/MM/yyyy"); ; 
Date notBeforeDate ,notAfterDate; 
notBeforeDate =formatter.parse("Your String format Date"); 
notAfterDate =formatter.parse("Your String format Date"); 

Read More。 希望它能幫助你。