Ion Android库是否支持hindi文本?

时间:2016-07-01 10:43:40

标签: java android json multipart ion

我正在使用Ion库并将数据android app发送到服务器。我在故事编辑视图中粘贴了印地文字体,但在服务器上接收时,文字在符号中更改。

Android代码:

           Ion.with(Createfunction.this)
            .load(url)
            .setTimeout(60 * 1000)
            /*added by sash 16.4.2016*/                   
            .setMultipartParameter("story", story) 
            .setMultipartContentType("application/json; charset=utf-8")                  
            .asJsonObject()
            .setCallback(new FutureCallback<JsonObject>() {
                @Override
                public void onCompleted(Exception e, JsonObject jsonObject) {
                    commonMethods.dismissWithCheck(materialDialog);
                    if (e == null) {
                      Log.d("oncomplete...", e + "it is null");
                        Boolean success = jsonObject.get("success").getAsBoolean();
                        if (success) {
                        //successfully done
                        }
                    }
            });

Wireshark响应:

enter image description here

印地语粘贴文字:

चलते लगातार दूसरे दिन एक भी गेंद नहीं फेंकी जा सकी. बारिश को देखते हुए अंपायरों ने तीसरे दिन भी खेल रद्द घोषित कर दिया.

接收文字,如......

enter image description here

请提出一些解决方案。

0 个答案:

没有答案