我在 Windows 上的 JLabel 中编码有问题(在 *nix 操作系统上一切正常)。这是一张图片: http: //i.imgur.com/DEkj3.png(有问题的字符是顶部带有 ` 的 L,它应该是 ł),这里的代码:
public void run()
{
URL url;
HttpURLConnection conn;
BufferedReader rd;
String line;
String result = "";
try {
url = new URL(URL);
conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
while ((line = rd.readLine()) != null) {
result += line;
}
rd.close();
} catch (Exception e) {
try
{
throw e;
}
catch (Exception e1)
{
Window.news.setText("");
}
}
Window.news.setText(result);
}
我试过Window.news.setText(new String(result.getBytes(), "UTF-8"));
了,但没有帮助。也许我需要使用指定的 JVM 标志运行我的应用程序?