当我运行以下测试时,它打印出" 2016-11-11"。这里发生了什么?我怎样才能打印出我作为输入提供的DateTime字符串?
import org.joda.time.DateTime;
import org.junit.Test;
public class Adapter2
extends XmlAdapter<String, DateTime>
{
public DateTime unmarshal(String value) {
return (org.joda.time.format.ISODateTimeFormat.dateTimeParser().parseDateTime(value));
}
public String marshal(DateTime value) {
return (org.joda.time.format.ISODateTimeFormat.dateTime().print(value));
}
@Test
public void test()
{
System.out.println(new Adapter3().marshal(new Adapter3().unmarshal("2016-11-12T00:00:00.000+08:00")));
}
}
&#13;
答案 0 :(得分:1)
使用DateTime.parse()
代替ISODateTimeFormat.dateTimeParser().parseDateTime()
。或者使用DateTime.parse()
使用的内容:
ISODateTimeFormat.dateTimeParser().withOffsetParsed().parseDateTime(value)