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

2022-08-24 00:00:00 android simpledateformat java

我正在使用SimpleDateFormat分析正确的日期。

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

我希望日期字符串仅使用英语。有可能吗?

查看我的代码和图片。

这是我的格式:

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

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

感谢您的帮助


解决方案

您必须更改

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

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

相关文章