Android,解析Json
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android,解析Json相关的知识,希望对你有一定的参考价值。
我有一个android项目,并使用json编写:“ text”:
p> \ r \ n“。
我想创建Webview,但不知道如何实现。这是带有常规URL的完整链接:http://megapolis-help.ru//ckeditor_assets/pictures/9/content_ox6imn6teoc.jpg
答案
首先从JSON响应中获得您的价值
JSONObject jsonObject=new JSONObject ("You JSON response body");
String text=new JSONObject (jsonObject.get ("text")).toString ();
用于加载以上响应webview
webview.loadData(text, "text/html", null);
以上是关于Android,解析Json的主要内容,如果未能解决你的问题,请参考以下文章