June 14, 201114 yr Im using the following code to fetch the HTML of a url as Text. is it possible to get the text returned as a UTF-8 format so that special characters are viewed correctly? url_to_fetch= new URL(url); HttpURLConnection httpcon = (HttpURLConnection) url_to_fetch.openConnection(); httpcon.addRequestProperty("User-Agent", "Mozilla/3.6"); BufferedReader in2 = new BufferedReader(new InputStreamReader(httpcon.getInputStream())); String inputLine; String Results=""; while ((inputLine = in2.readLine()) != null) Results=Results+inputLine+"\n"; in2.close(); return Results;
Create an account or sign in to comment