exception java .text,java.text.ParseException尝试在java中解析日期

I can not parse the string "16 Apr 2014 17:00" as a string. I've trying to use DateUtils in apachecommons library. here is the test code with the exception

package com.buraktas;

import java.text.ParseException;

import java.util.Date;

import org.apache.commons.lang3.time.DateUtils;

import org.junit.Test;

public class ParseDateTest {

@Test

public void test() throws ParseException {

String date = "18 Apr 2014 20:00";

Date parseDate = DateUtils.parseDate(date, "dd MMM yyyy HH:mm");

System.out.println(parseDate);

}

}

and the stacktrace is like below;

java.text.ParseException: Unable to parse the date: 18 Apr 2014 20:00

at org.apache.commons.lang3.time.DateUtils.parseDateWithLeniency(DateUtils.java:391)

at org.apache.commons.lang3.time.DateUtils.parseDate(DateUtils.java:291)

at org.apache.commons.lang3.time.DateUtils.parseDate(DateUtils.java:268)

at com.buraktas.ParseDateTest.test(ParseDateTest.java:15)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)

at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)

at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)

at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)

at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)

at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)

at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)

at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)

at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)

at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)

at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)

at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)

at org.junit.runners.ParentRunner.run(ParentRunner.java:309)

at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)

at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)

at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)

at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)

at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)

at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

EDIT: The thing is I have to setup default locale to en_US even my JVM shows that my default is en _US. Here is the code.

@Test

public void testParse2() throws Exception {

System.out.println(Locale.getDefault());

String date = "18 Apr 2014 20:00";

Locale.setDefault(Locale.ENGLISH);

Date parseDate = DateUtils.parseDate(date, new String[] { "dd MMM yyyy HH:mm" });

System.out.println(parseDate);

}

and the output is

en_US

Fri Apr 18 20:00:00 EEST 2014

解决方案

From your profile, it seems you are in Turkey. As such, if parseDate uses the default Locale, it may be using a Turkish Locale. Apr is not a shorthand for the Turkish word for that month.

Consider using your own SimpleDateFormat where you can set an English Locale (unless DateUtils has such a method).

Otherwise, try parsing a date with the Turkish (shorthand) word for April.

Inspecting the source, I can't find anything wrong. Please try

String date = "18 Apr 2014 20:00";

Locale.setDefault(Locale.US);

Date parseDate = DateUtils.parseDate(date, new String[] { "dd MMM yyyy HH:mm" });

System.out.println(parseDate);

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值