我想将整数的月份转换为名称。但在某些语言中月份名称是错误的,例如,意大利语和英语都是准确的,而俄语和波兰语则是错误的。这就是我用SimpleDateFormat
做的事情SimpleDateFormat curFormater = new SimpleDateFormat("MM");
SimpleDateFormat postFormater = new SimpleDateFormat("MMMM");
String eDDte;
try {
Date nDate = curFormater.parse(d.mese);//d.mese = 01
eDDte = postFormater.format(nDate);
tvMonth.setText(eDDte.toUpperCase());
}
catch (Exception e) {
}