在json中new String[]出现了乱码

来源:3-1 JSON使用

qq_勾畫我的天空_03728221

2017-10-09 15:16

private static void JSONObject() {

// TODO Auto-generated method stub

JSONObject wangxiaoer = new JSONObject();

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

wangxiaoer.put("age", 25.2);

wangxiaoer.put("birthday", "1990-01-01");

wangxiaoer.put("major" ,new String[]{"1","2"});

wangxiaoer.put("car",null);

wangxiaoer.put("house",null);

System.out.println(wangxiaoer.toString());

}

}

得出来的结果是这样的

{"car":null,"birthday":"1990-01-01","age":25.2,"name":"王小二","house":null,"major":[Ljava.lang.String;@b166b5}


写回答 关注

1回答

  • qq_我没有昵称_0
    2017-10-09 23:31:33

    这就比较奇怪了,同样的代码,只是我wangxiaoer.put("house",null);这样直接put null的代码改为了Object nullObj = null; 用一个空对象put进去,话说你的编译器不会提示不能直接put null吗?下面这个代码我本机输出是没有问题的,你试试看看

    Object nullObj = null;
    JSONObject wangxiaoer = new JSONObject();
    wangxiaoer.put("name", "王小二");
    wangxiaoer.put("age", 25.2);
    wangxiaoer.put("birthday", "1990-01-01");
    wangxiaoer.put("major" ,new String[]{"1","2"});
    wangxiaoer.put("car",nullObj);
    wangxiaoer.put("house",nullObj);
    System.out.println(wangxiaoer.toString());

JSON快速入门(Java版)

JSON和GSON的应用,JSON快速入门视频教程,赶快加入吧

102037 学习 · 163 问题

查看课程

相似问题