为了账号安全,请及时绑定邮箱和手机立即绑定

wangxiaoer.put("major",new String[]{"烹饪","挖掘机"});得到的数据不完整,少了“]”

JSONObject wangxiaoer = new JSONObject();

try {

Object objnull = null;

wangxiaoer.put("name","王小二");

wangxiaoer.put("age", 25.2);

wangxiaoer.put("birthday","1994-01-02");

wangxiaoer.put("school", "蓝翔");

wangxiaoer.put("major",new String[]{"烹饪","挖掘机"});

wangxiaoer.put("has_girlfriend",false);

wangxiaoer.put("car", objnull);

wangxiaoer.put("house", objnull);

wangxiaoer.put("comment", "这是一个注释");

Log.i("info", "===="+wangxiaoer.toString());

System.out.println("===="+wangxiaoer.toString());

} catch (JSONException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

得到的结果:{"birthday":"1994-01-02","school":"蓝翔","comment":"这是一个注释","has_girlfriend":false,"major":"[Ljava.lang.String;@4a7c04c0","age":25.2,"name":"王小二"}

求解:为甚么少了一个"]",major就不能构成数组对象


正在回答

3 回答

debug跟踪一下执行顺序,就明白了,关于如何打debug请看第一季第五章~

0 回复 有任何疑惑可以回复我~

谢谢,不过这是在自己写假json数据,应该不需要json文件吧?

0 回复 有任何疑惑可以回复我~

你先看一下你的json文件里面是不是少了一个],另外数组是要遍历的,不是你这样直接tostring,那样得到的是地址值

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

wangxiaoer.put("major",new String[]{"烹饪","挖掘机"});得到的数据不完整,少了“]”

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信