I have an object in retriving http post response from webserver. However unicode will requires me to do the following
BufferedReader reader = new BufferedReader(new InputStreamReader(
is, "UTF-8"), 8);
instead of my usual
BufferedReader reader = new BufferedReader(new InputStreamReader(
is, "iso-8859-1"), 8);
If i were to use unicode for all response, will it affect my normal text?
You sould check what the webserver responses. It can be iso-8859-1 or UTF-8. Check the Charset of the Content-Type header from the HTTP response
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With