Java String to Date, ParseException

后端 未结 3 1997
清歌不尽
清歌不尽 2021-01-29 05:21

I have a string named DateCompareOld, it has the value \"Fri Aug 12 16:08:41 EDT 2011\". I want to convert this to a date object.

 SimpleDateFormat          


        
3条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-29 05:42

    Note the String passed to SimpleDateFormat() should be corrected to "EEE MMM dd HH:mm:ss z yyyy"

    Here is the code:

    import java.util.Date;
    import java.text.SimpleDateFormat;
    import java.text.ParseException;
    public class DateTest{
    public static void main(String []args){
        String DateCompareOld = "Fri Aug 12 16:08:41 EDT 2011";
        SimpleDateFormat dateType =  new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy");
        Date convertDate = new Date();
        try{
         convertDate = dateType.parse(DateCompareOld);
        }catch(ParseException pex){
            pex.printStackTrace();
        }
        System.out.println(convertDate.toString());
      }
    
    }
    

提交回复
热议问题