2 回答
TA贡献1827条经验 获得超9个赞
从异常中可以清楚地看出,URL 返回的JSON 字符串的类型是 JSONObject 而不是 JSONArray。
值 { 应该是 } 类型 org.json.JSONObject 的值无法转换为 JSONArray
JSON 对象将以 { 开头 & 以 } 结尾
{ "KEY1":"VALUE1", "KEY2":"VALUE2" }
并且 JSON 数组将以 [ 开头并以 ] 结尾。
[
{"KEY1":"VALUE1","KEY2":"VALUE2"},{"KEY1":"VALUE1","KEY2":"VALUE2"}
]
因此,您收到此异常是因为您正在尝试将 JSON 对象转换为 JSON 数组。
TA贡献1851条经验 获得超5个赞
public String URLToJson() {
String result = "";
String jsonString = ReadingURL("http://deliciasmarinas.avancari.co.cr/app/tiquete.php?factura=414696772");
JSONObject jsonResult = null;
try {
jsonResult = new JSONObject(jsonString);
for (int i = 0; i <= jsonResult.length(); i++) {
result = result + "Dirección: " + jsonResult.get("Direccion") + "\n";
result = result + "Cédula: " + jsonResult.get("Cedula") + "\n";
result = result + "Nombre: : " + jsonResult.get("Nombre") + "\n";
result = result + "Teléfono : " + jsonResult.get("Telefono") + "\n";
result = result + "Hacienda: " + jsonResult.get("Hacienda") + "\n";
}
return result;
}catch (JSONException e){
e.printStackTrace();
return "Error Reading JSON Data";
}
}
现在它只显示
W/System.err: org.json.JSONException: No value for Direccion
at org.json.JSONObject.get(JSONObject.java:389)
W/System.err: at com.example.user.mypos.PrintManager.URLToJson(PrintManager.java:978)
at com.example.user.mypos.PrintManager$4.run(PrintManager.java:917)
at java.lang.Thread.run(Thread.java:818)
添加回答
举报