我正在开发一个Java SE Sinhalese Unicode应用程序的项目,我想在Sinhalese中显示日期。在stackoverflow上搜索后,我发现我可以使用ICU4J,但它没有用。
这是我用过的代码
ULocale locale = ULocale.forLanguageTag("si-LK");
dfDate = new SimpleDateFormat("MMMMM d, YYYY", locale.toLocale());
date = new Date();
lblDate.setText(dfDate.format(date));
但它仍以英文输出。
答案 0 :(得分:1)
为我工作。 ජ 7, 2014
。确保您在导入中使用ICU的SimpleDateFormat
。