UTF-8 response with servlet

MaTraXnet

New Member
I am reading HTTP response from a Perl page in a Servlet like this:\[code\]public String getHTML(String urlToRead) { URL url; HttpURLConnection conn; BufferedReader rd; String line; String result = ""; try { url = new URL(urlToRead); conn = (HttpURLConnection) url.openConnection(); conn.setRequestMethod("GET"); conn.setRequestProperty("Accept-Charset", "UTF-8"); conn.setRequestProperty("Content-Type", "text/xml; charset=UTF-8"); rd = new BufferedReader(new InputStreamReader(conn.getInputStream(), "UTF-8")); while ((line = rd.readLine()) != null) { byte [] b = line.getBytes(); result += new String(b, "UTF-8"); } rd.close(); } catch (Exception e) { e.printStackTrace(); } return result; }\[/code\]I am displaying this result with this code:\[code\]response.setContentType("text/plain; charset=UTF-8"); PrintWriter out = new PrintWriter(new OutputStreamWriter(response.getOutputStream(), "UTF-8"), true); try { String query = request.getParameter("query"); String type = request.getParameter("type"); String res = getHTML(url); out.write(res); } finally { out.close(); }\[/code\]But the response still is not encoded as UTF-8. What am I doing wrong?Thanks in advance.
 
Top