当前位置 : 主页 > 编程语言 > c++ >

Android V6 解析JSON

来源:互联网 收集:自由互联 发布时间:2021-07-03
gistfile1.txt JsonObject jsonObj = (JsonObject) obj; JsonObject custom = jsonObj.getAsJsonObject("custom"); String html = custom.get("Content").getAsString(); mWebView.loadDataWithBaseURL(null, html, "text/html", "utf-8", null);
gistfile1.txt
JsonObject jsonObj  = (JsonObject) obj;
                            JsonObject custom   = jsonObj.getAsJsonObject("custom");
                            String      html    = custom.get("Content").getAsString();
                            mWebView.loadDataWithBaseURL(null, html, "text/html", "utf-8", null);
网友评论