java.text.ParseException: Unparseable date: “2014-06-04” (at offset 5)

后端 未结 4 1782
名媛妹妹
名媛妹妹 2021-01-04 19:14

I want to parse the date into a desired format but i am receiving an exception every time. i know it is easy to implement but i am facing some problem don\'t know where exac

4条回答
  •  被撕碎了的回忆
    2021-01-04 19:27

    // Try this way,hope this will help you to solve your problem....
    
    public String convertDateStringFormat(String strDate, String fromFormat, String toFormat){
           try{
              SimpleDateFormat sdf = new SimpleDateFormat(fromFormat);
              sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
              SimpleDateFormat dateFormat2 = new SimpleDateFormat(toFormat.trim());
              return dateFormat2.format(sdf.parse(strDate));
           }catch (Exception e) {
              e.printStackTrace();
              return "";
           }
    }
    

提交回复
热议问题