编程语言
首页 > 编程语言> > java.text.ParseException:无法解析的日期:“2014-06-04”(偏移量为5)

java.text.ParseException:无法解析的日期:“2014-06-04”(偏移量为5)

作者:互联网

我想将日期解析成所需的格式,但我每次都收到一个例外.
我知道这很容易实现,但我面临一些问题,不知道究竟在哪里:

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

以下是我的代码:

private String getconvertdate(String date) {
    DateFormat inputFormat = new SimpleDateFormat("yyyy-MMM-dd HH:mm:ss",Locale.ENGLISH);
    inputFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
    DateFormat outputFormat = new SimpleDateFormat("dd-MMM-yyyy",Locale.ENGLISH);
    Date parsed = null;
    try {
        parsed = inputFormat.parse(date);
    } catch (ParseException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    String outputText = outputFormat.format(parsed);
    return outputText;
}

方法输入:2014-06-04

预期产出:2014年6月6日

我跟着一些Ref.来自Stackoverflow.com,但他仍然存在问题.
请帮忙.

解决方法:

你没有时间参与你的字符串:
而月份只有两个字符
更换

new SimpleDateFormat("yyyy-MMM-dd HH:mm:ss",Locale.ENGLISH);

new SimpleDateFormat("yyyy-MM-dd",Locale.ENGLISH);

标签:android-date,android,java
来源: https://codeday.me/bug/20191006/1861567.html