如何将字符串解析为日期?

时间:2013-07-31 06:32:26

标签: java date simpledateformat

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 个答案:

答案 0 :(得分:2)

假设您正在寻找Java解决方案。更改格式字符串:

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

请参阅documentation以获取确切的格式字符串信息。

答案 1 :(得分: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。 希望它会对你有所帮助。