I\'m trying to allow multilingual support in my app which makes an HTTP post to upload new messages. What do I need to do in order to support japanese & other non latin bas
Try setting encoding on StringEntity:
StringEntity stringEntity = new StringEntity(msg, "UTF-8");