Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 4923 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

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;

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.