Eden Morris Posted June 14, 2011 Posted June 14, 2011 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;
Recommended Posts
This topic is 4923 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now