3

How to convert a string in the form of 03/24/2013 21:54 into a Date object in java?

4

2 回答 2

33

使用这个,

        String s = "03/24/2013 21:54";
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("MM/dd/yyyy HH:mm");
        try
        {
            Date date = simpleDateFormat.parse(s);

            System.out.println("date : "+simpleDateFormat.format(date));
        }
        catch (ParseException ex)
        {
            System.out.println("Exception "+ex);
        }
于 2013-06-04T05:28:45.020 回答
13

SimpleDateFormat. 步骤是 -

  1. 创建您的日期模式字符串
  2. 创建SimpleDateFormat对象
  3. 并用它解析。
  4. 它将返回Date对象。
于 2013-06-04T05:25:15.057 回答