我在整个网站上搜索过,但我认为我的问题略有不同,在我出现心脏衰竭或烧毁电脑之前可以提供一些帮助。
我动态生成月份名称列表(格式为2011年6月,2011年7月),显然我希望这对区域设置敏感:因此我使用简单的日期格式对象,如下所示:
//the actual locale name is dependent on UI selection
Locale localeObject=new Locale("pl");
// intended to return full month name - in local language.
DateFormat dtFormat = new SimpleDateFormat("MMMM yyyy",localeObject);
//this bit just sets up a calendar (used for other bits but here to illustrate the issue
String systemTimeZoneName = "GMT";
TimeZone systemTimeZone=TimeZone.getTimeZone(systemTimeZoneName);
Calendar mCal = new GregorianCalendar(systemTimeZone); //"gmt" time
mCal.getTime(); //current date and time
但如果我这样做:
String value=dtFormat.format(mCal.getTime());
这个“应该”返回月份名称的本地化版本。在波兰语中,“九月”这个词是“Wrzesień” - 请注意n上的重音。然而,我回来的只是“Wrzesie?”
我做错了什么?
感谢所有人 - 我现在接受这是一个演示问题 - 但我怎样才能安全地“读取”dtFormat的结果 - 我使用getBytes等在ref下面添加了一些评论 - 这在其他情况下有用,我只是可以'似乎可以访问字符串结果而不会弄乱它
- 最终编辑;对于任何涉及此问题的人
答案在BalusC的博客上:http://balusc.blogspot.com/2009/05/unicode-how-to-get-characters-right.html#DevelopmentEnvironment
基本上DTformat对象返回UTF-8并在我将其读入字符串时自动转换回系统默认字符集
所以这段代码对我有用
new String(dtFormat.format(mCal.getTime()).getBytes("UTF-8"),"ISO-8859-1");
非常感谢您的帮助
答案 0 :(得分:4)
您的问题与SimpleDateFormat
无关 - 您只是对结果做错了。
你之前没有告诉我们你在使用字符串做什么 - 你如何在UI中显示它 - 但那是问题。你可以看到它正在获取一个本地化的字符串;它只是重音字符的显示导致问题。如果你的字符串常量包含相同的重音字符,你会看到完全相同的东西。
我建议你检查整个应用程序中使用的所有编码(如果它是一个Web应用程序),或者如果它是控制台或Swing应用程序,请检查显示字符串的字体。
如果你检查调试器中的字符串,我相信你会发现它有完全正确的字符 - 这就是他们如何找到用户的问题。
答案 1 :(得分:0)
在我的测试中,dtFormat.format(mCal.getTime())
返回
październik2011
new SimpleDateFormat(0,0,localeObject).format(mCal.getTime())
返回:
poniedziałek,3październik201114:26:53 EDT