È possibile modificare i simboli di formato di default di avere i numeri per mesi romaniche
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 è un bel tutorial su come avere i simboli formattazione personalizzata.
Si può scegliere di cambiare entrambi i brevi mesi tramite setShortMonths()
o mesi interi tramite setMonths()
UPDATE: Ecco una versione con DateTimeFormatterBuilder da 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"));
Sì, questo è possibile. Si prega di mostrare ciò che hai provato finora e di spiegare quale sia il problema specifico. Inoltre, come stai procedendo bypassando un formato che 'Date' può effettivamente leggere? Qual è la ragione di questo requisito apparentemente arbitrario? – tnw
Che analisi stai cercando di usare - 'SimpleDateFormat'? Hai provato 'SimpleDateFormat.setDateFormatSymbols' e hai fornito una serie di simboli di formato in cui i nomi dei mesi sono' I', 'II' etc? –