gpt4 book ai didi

java - 将字符串转换为日期 - 罗马月

转载 作者:搜寻专家 更新时间:2023-10-31 19:27:38 26 4
gpt4 key购买 nike

我有以下字符串:“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()

更改完整月份

更新:这是一个带有 DateTimeFormatterBuilder 的版本来自 JDK8

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"));

关于java - 将字符串转换为日期 - 罗马月,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28613990/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com