作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
只是想知道这个错误可能意味着什么?我从下面的代码中得到它..
try{
JSONArray jArray = new JSONArray(result);
for(int i=0;i<jArray.length();i++){
JSONObject json_data = jArray.getJSONObject(i);
Log.i("log_tag","id: "+json_data.getInt("id")+
", name: "+json_data.getString("name")+
", sex: "+json_data.getInt("sex")+
", birthyear: "+json_data.getInt("birthyear")
);
}
}
}catch(JSONException e){
Log.e("log_tag", "Error parsing data "+e.toString());
}
最佳答案
结果显然是空的。或者它根本不以 [
开头。在调用 JSONArray 之前打印出来看看。
另请查看JSONArray source 。它需要 JavaScript 数组语法,例如:
['这个', '是', '数组', '语法']
关于java - "A JSONArray text must start with ' [' at character 1 of null",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3085830/
我是一名优秀的程序员,十分优秀!