0

我在解析日期时遇到问题。我将日期“Mittoch,28. 06. 2017”作为字符串,并使用以下代码对其进行解析:

date = new SimpleDateFormat("EEEE, dd. MM. yyyy", Locale.GERMAN).parse("Mittwoch, 28. 06. 2017");

但这仍然给了我无法解析的日期错误。

如果我在另一个系统上运行它,它工作正常。

非常感谢

编辑:

    java.text.ParseException: Unparseable date: "Mittwoch, 28. 06. 2017"
        at java.text.DateFormat.parse(DateFormat.java:366)
        at Download.StartDownload(Download.java:88)
        at Download.main(Download.java:42)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:483)
        at org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader.main(JarRsrcLoa
der.java:58)
Exception in thread "main" java.lang.reflect.InvocationTargetException
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:483)
        at org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader.main(JarRsrcLoa
der.java:58)
Caused by: java.lang.NullPointerException
        at java.util.Calendar.setTime(Calendar.java:1770)
        at java.text.SimpleDateFormat.format(SimpleDateFormat.java:943)
        at java.text.SimpleDateFormat.format(SimpleDateFormat.java:936)
        at java.text.DateFormat.format(DateFormat.java:345)
        at Download.StartDownload(Download.java:94)
        at Download.main(Download.java:42)
        ... 5 more

编辑:我使用的是导致错误的旧 Java 版本。

4

1 回答 1

0

尝试使用EEE而不是EEEE

 date = new SimpleDateFormat("EEE, dd. MM. yyyy", Locale.GERMAN).parse("Mittwoch, 28. 06. 2017")
于 2017-06-29T10:50:12.387 回答