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