UTF-8 encoding in JLabel on Windows
问题 I have a problem with encoding in JLabel on Windows(on *nix OSes everything is okay). Here's an image: http://i.imgur.com/DEkj3.png (the problematic character is the L with ` on the top, it should be ł) and here the code: 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