Android JSON解析结果NULL jsonobject

时间:2018-10-25 18:38:36

标签: android json parsing

我正在尝试从JSON文件创建对象列表,但我的结果始终是NULL enter image description here enter image description here

1 个答案:

答案 0 :(得分:0)

问题就在这行

JSONObject json = new JSONObject("listBeer.json");

您已在此处传递JSON字符串,而不是文件名。请参阅文档here。您的代码将出现JSONException,因为字符串listBeer.json不是有效的JSON。