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

I have a working (for normal alphabetic characters) forum reader app, however when I tried posting in Chinese characters, it shows fine on the app but turns out garbled on the forum website. It is the same result on any browser whether Chrome or IE (on desktop) or Opera Mobile.

For example, if I post: 7 年就痒了 It turns out on the browser: 7 年就痒了

However, it will appear correctly if I force switch the Encoding to UTF-8 on the browser. The forum web pages are coded in ISO-8859-1.

My app code is below:

    message = tarea.getText().toString();

    feed = "title=&message="+message
            +"&do=postreply&s=&t="+t+"&p="+p+"&posthash="+posthash
            +"&poststarttime="+poststarttime+"&loggedinuser="+loggedinuser+"&iconid=0&parseurl=1&signature=1";

    byte[] outfeed = EncodingUtils.getBytes(feed, "utf-8");

    WebView blackhole = (WebView) findViewById(R.id.postresponse);
    blackhole.setWebViewClient(new WebViewClient());
    WebSettings webSettings = blackhole.getSettings();
    webSettings.setJavaScriptEnabled(true);     
    webSettings.setDefaultTextEncodingName("utf-8");
    blackhole.postUrl("http://forums.xxxxxxxxx.com/newreply.php",outfeed);  

If I use both "iso-8859-1", the result turns out as lots of ???????

I am using WebView for the URL post because somehow HttpPost does not work.

Also, if I enter the exact same characters into the Android browser on the forum website posting itself, it displays fine!

Appreciate any insights into this as I've spent one whole day yesterday trying stuff like switching the encoding of the .xml, .java and manifest etc but to no avail. :(

share|improve this question

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.