Java UTF-8 encoding not working HttpURLConnection

后端 未结 3 790
无人及你
无人及你 2021-01-03 23:30

I tried to do post call and to pass input with this value - \"ä€愛لآहที่\" I got error message

{\"error\":{\"code\":\"\",\"message\":{\"lang\":\"en-US\",\"va         


        
3条回答
  •  忘掉有多难
    2021-01-04 00:09

    It seems that your variable content does already have the wrong data because you may have converted a String without any attention to the required encoding.

    Setting the correct enconding on the writer and use write() instead of writeBytes() should be worth a try.

提交回复
热议问题