将字符串转换为日期 - 罗马月
Convert string to date - roman month
我有以下字符串:“05 X 02”。我怎样才能将它转换为日期?我不想将它转换为字符串“05 10 02”然后再到日期。可能吗?
感谢您的帮助。
到目前为止我一直在尝试使用
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd M/L yy");
但是没用。还尝试使用 DateTimeFormatterBuilder,但在这里我完全迷路了。
您可以将默认格式符号更改为使用罗马数字表示月份
DateFormatSymbols symbols = DateFormatSymbols.getInstance();
final String[] romanMonths = {"I", "II", "III", "IV", "V", "VI", "VII", "VIII", "IX", "X", "XI", "XII"};
symbols.setMonths(romanMonths);
SimpleDateFormat formatter = new SimpleDateFormat("dd MMMM yy", symbols);
System.out.println("My date " + formatter.parse("05 X 02"));
Here 是一个很好的教程,介绍如何使用自定义格式符号。
您可以选择通过 setShortMonths()
更改短月或通过 setMonths()
更改整月
更新: 这是来自 JDK8
的 DateTimeFormatterBuilder 版本
static final ImmutableMap<Long, String> ROMAN_MONTHS = ImmutableMap.<Long, String>builder()
.put(1L, "I").put(2L, "II").put(3L, "III").put(4L, "IV").put(5L, "V")
.put(6L, "VI").put(7L, "VII").put(8L, "VIII").put(9L, "IX").put(10L, "X")
.put(11L, "XI").put(12L, "XII").build();
DateTimeFormatter formatter = new DateTimeFormatterBuilder()
.appendValue(ChronoField.DAY_OF_MONTH, 1, 2, SignStyle.NORMAL)
.appendLiteral(' ')
.appendText(ChronoField.MONTH_OF_YEAR, ROMAN_MONTHS)
.appendLiteral(' ')
.appendValue(ChronoField.YEAR, 4)
.toFormatter();
System.out.println("My date " + formatter.parse("5 X 2012"));
我有以下字符串:“05 X 02”。我怎样才能将它转换为日期?我不想将它转换为字符串“05 10 02”然后再到日期。可能吗?
感谢您的帮助。
到目前为止我一直在尝试使用
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd M/L yy");
但是没用。还尝试使用 DateTimeFormatterBuilder,但在这里我完全迷路了。
您可以将默认格式符号更改为使用罗马数字表示月份
DateFormatSymbols symbols = DateFormatSymbols.getInstance();
final String[] romanMonths = {"I", "II", "III", "IV", "V", "VI", "VII", "VIII", "IX", "X", "XI", "XII"};
symbols.setMonths(romanMonths);
SimpleDateFormat formatter = new SimpleDateFormat("dd MMMM yy", symbols);
System.out.println("My date " + formatter.parse("05 X 02"));
Here 是一个很好的教程,介绍如何使用自定义格式符号。
您可以选择通过 setShortMonths()
更改短月或通过 setMonths()
更新: 这是来自 JDK8
的 DateTimeFormatterBuilder 版本static final ImmutableMap<Long, String> ROMAN_MONTHS = ImmutableMap.<Long, String>builder()
.put(1L, "I").put(2L, "II").put(3L, "III").put(4L, "IV").put(5L, "V")
.put(6L, "VI").put(7L, "VII").put(8L, "VIII").put(9L, "IX").put(10L, "X")
.put(11L, "XI").put(12L, "XII").build();
DateTimeFormatter formatter = new DateTimeFormatterBuilder()
.appendValue(ChronoField.DAY_OF_MONTH, 1, 2, SignStyle.NORMAL)
.appendLiteral(' ')
.appendText(ChronoField.MONTH_OF_YEAR, ROMAN_MONTHS)
.appendLiteral(' ')
.appendValue(ChronoField.YEAR, 4)
.toFormatter();
System.out.println("My date " + formatter.parse("5 X 2012"));