我正在尝试使用带有德语区域设置的日历函数 getDisplayNames() 以德语获取星期几。
Calendar now = Calendar.getInstance();
Map<String,Integer> displayNames = now.getDisplayNames(Calendar.DAY_OF_WEEK, Calendar.LONG, new Locale("de_DE"));
相反,我得到英文的星期几名称:Sunday, Monday, .... etc.
我做错了什么还是根本不起作用?也许它与我的 IDEA 调试器控制台的 toString() 有关?我正在使用最新的 Intellij 12.1.2。