get函数调用很简单.就先创建一个你自己构建的JavaBean对象,比如我这儿是Man wang2 = new Man();
然后在后面直接写wang2.setName("wangxiaoer");就行了. 在 . 后面写setN之后就会有提示了
然后在后面直接写wang2.setName("wangxiaoer");就行了. 在 . 后面写setN之后就会有提示了
2017-09-27
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.0</version>
</dependency>
2017-09-24
这样就不会错了。
private static void mapJson(){
Map<String,Object> jo=new HashMap<String,Object>();
jo.put("car", null);
jo.put("girl",new String[]{"张柏芝","张靓颖"});
JSONObject js=new JSONObject();
js.putAll(jo);
System.out.println(js);}
private static void mapJson(){
Map<String,Object> jo=new HashMap<String,Object>();
jo.put("car", null);
jo.put("girl",new String[]{"张柏芝","张靓颖"});
JSONObject js=new JSONObject();
js.putAll(jo);
System.out.println(js);}
2017-09-19