我目前正在开发需要在Android中进行json解析的项目..我从php页面获取json但不知何故JSONObject无法将数据String转换为JSONObject。
HttpEntity httpEntity = httpResponse.getEntity();
String data=EntityUtils.toString(httpEntity);
我得到的数据是
{"success":"1"}
<!-- Hosting24 Analytics Code -->
<script type="text/javascript" src="http://stats.hosting24.com/count.php"></script>
<!-- End Of Analytics Code -->
我应该如何处理这个问题,以免我得到JSONObject异常。
答案 0 :(得分:1)
您可以使用org.json.JSONObject
示例:
import org.json.JSONObject;
...
String data = data.split("<!--")[0];
JSONObject object = new JSONObject(data);