Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My Android application retrieves SHOUTcast metadata and displays it. I'm having and issue with none-English character sets. Basically, the metadata is displayed as gibberish. How would I perform character encoding detection and display the text properly? Sorry if this is a non-trivial question, I'm not well-versed in this topic.

The stream in question is: http://skully.hopto.org:8000

share|improve this question
It depends on the source of data. For yout link you can open the HTML code of the page and you will see the line <meta content="text/html; charset=windows-1252" http-equiv="Content-Type">. It means that encoding is Windows-1252, and if you use only this site, you can hardcode this encoding name and always use it. – vorrtex Mar 16 at 9:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.