When using HTTP Components (java library for http) the response I get has ' displayed as Æ and - displayed as ȗ.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
Ok, so basically you are getting a response without In So I'm guessing your problem is where you are displaying this characters, either to the console or to a file. The console will use the default charset to print the chars there. In my machine for example is So what you need is to get the raw bytes from the response and do something like this:
Also, this might shed some light in the matter: http://download.oracle.com/javase/tutorial/i18n/text/string.html |
|||||||||||
|
Content-Encodingresponse header and paste the value here? – Pablo Fernandez Jun 27 '11 at 15:46