File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Java in General and the fly likes encoding problem (communication with http server) Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "encoding problem (communication with http server)" Watch "encoding problem (communication with http server)" New topic
Author

encoding problem (communication with http server)

olze oli
Ranch Hand

Joined: Jun 20, 2009
Posts: 148
hi,

i'm using httpclient 4 to communicate with a http server.
when i send a request it gives me the result in such format: artist="XYZ" song="ABC"
the problem is that it sends utf-8 encodet (eg. sven v\u00e4th as artist)
how can i convert this to get displayed correctly?
when i try it with: String artist = "väth"; it works

i even tried it with: new String(artistName.getBytes("Cp1252"), "UTF8"));
but thats not working
olze oli
Ranch Hand

Joined: Jun 20, 2009
Posts: 148
as workaround i'm using now the .replace function and replace the most common chars myself... but there must be a better solution for this
if someone has a tip, please let me know
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: encoding problem (communication with http server)
 
Similar Threads
Regarding Objects Generated by Objects
for if else + Output Problem (array)
Checking for Object Type
No Deserializer found to deserialize
Model or bean class is not available to Action Class