SimpleDateFormat以不同语言返回字符串日期

2022-09-03 04:38:08

Im使用SimpleDateFormat来解析正确的日期。

有时,当我使用SimpleDateFormat时,它会以英语以外的其他语言返回me的日期。

我希望日期字符串只有英文。可能吗?

请参阅我的代码和图片。

这是我的格式化程序:

SimpleDateFormat df = new SimpleDateFormat("d-MMMM-yyyy", Locale.ENGLISH);

这是相同的应用程序,但字符串使用不同的语言:

enter image description here

enter image description here

感谢您的帮助


答案 1

你必须改变

SimpleDateFormat df = new SimpleDateFormat("d-MMMM-yyyy", Locale.ENGLISH);

SimpleDateFormat df = new SimpleDateFormat("d-MMMM-yyyy", Locale.US);

答案 2
SimpleDateFormat df = new SimpleDateFormat("d-MMMM-yyyy", new Locale("ar")); //for example arabic laguage

您可以在此处查看以获取更多详细信息。


推荐