我正在使用JAXB和joda时间2.2。将数据从Mysql备份到XML并将其还原。在我的表中,我有一个Date属性,格式为“16-Mar-05”。我成功地将其存储在XML中。但是当我想从XML读取并将其放回Mysql表中时,我无法获得正确的格式。
这是我的XMLAdapter类,这里的unmarshal方法输入String是“16-Mar-05”,但我不能以“16-Mar-05”的格式获取localDate变量,虽然我将模式设置为“DD-MMM-YY”。我发布了我尝试的所有选项,如何在16d-05-05格式的“dd-MMM-yy”中获取我的localDate?
谢谢!
public class DateAdapter extends XmlAdapter<String, LocalDate> {
// the desired format
private String pattern = "dd-MMM-yy";
@Override
public String marshal(LocalDate date) throws Exception {
//return new SimpleDateFormat(pattern).format(date);
return date.toString("dd-MMM-yy");
}
@Override
public LocalDate unmarshal(String date) throws Exception {
if (date == null) {
return null;
} else {
//first way
final DateTimeFormatter dtf = DateTimeFormat.forPattern("dd-MMM-yy");
final LocalDate localDate2 = dtf.parseLocalDate(date);
//second way
LocalDate localDate3 = LocalDate.parse(date,DateTimeFormat.forPattern("dd-MMM-yy"));
//third way
DateTimeFormatter FORMATTER = DateTimeFormat.forPattern("dd-MMM-yy");
DateTime dateTime = FORMATTER.parseDateTime(date);
LocalDate localDate4 = dateTime.toLocalDate();
return localDate4;
}
}
答案 0 :(得分:5)
所以我拿了你的代码并运行它,它对我来说很好......
我认为,问题在于您希望LocalDate
对象维护原始解析对象的格式,这不是LocalDate
的工作原理。 / p>
LocalDate
表示日期或时间段,不是格式。
LocalDate
有一个toString
方法,可用于转储对象的值,它是对象用来提供人类可读表示的内部格式。
要设置日期格式,您需要使用某种格式化程序,它将采用您想要的模式和日期值并返回String
例如,以下代码......
SimpleDateFormat sdf = new SimpleDateFormat(pattern);
String date = "16-Mar-05";
DateTimeFormatter dtf = DateTimeFormat.forPattern("dd-MMM-yy");
LocalDate localDate2 = dtf.parseLocalDate(date);
System.out.println(localDate2 + "/" + dtf.print(localDate2));
//second way
LocalDate localDate3 = LocalDate.parse(date, DateTimeFormat.forPattern("dd-MMM-yy"));
System.out.println(localDate3 + "/" + dtf.print(localDate3));
//third way
DateTimeFormatter FORMATTER = DateTimeFormat.forPattern("dd-MMM-yy");
DateTime dateTime = FORMATTER.parseDateTime(date);
LocalDate localDate4 = dateTime.toLocalDate();
System.out.println(localDate4 + "/" + FORMATTER.print(localDate4));
...生产
2005-03-16/16-Mar-05
2005-03-16/16-Mar-05
2005-03-16/16-Mar-05
在您对此感到不安之前,这就是Java Date
的工作原理。