java string date conversion

后端 未结 2 571
闹比i
闹比i 2021-01-27 10:40

I want to convert a string to date before storing it and I used

SimpleDateFormat format = new SimpleDateFormat(\"yyyy-mm-dd\");
Date returnDate = format.parse(d         


        
2条回答
  •  灰色年华
    2021-01-27 11:13

    In your DateFormat use MM for month instead of mm, that is for minutes

    Reference: http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html

提交回复
热议问题