{
"name" : "王小二",
"age" : 25.2
"birthday" : "1990-01-01",
"school" :"蓝翔",
"major":["理发","挖掘机"],
"has_grlfrend":false,
"car":null,
"house":null,
"comment":"这是一个注释"
}
json中没有注释一说,若要注释添加comment
"name" : "王小二",
"age" : 25.2
"birthday" : "1990-01-01",
"school" :"蓝翔",
"major":["理发","挖掘机"],
"has_grlfrend":false,
"car":null,
"house":null,
"comment":"这是一个注释"
}
json中没有注释一说,若要注释添加comment
2019-02-20
最赞回答 / qq_a沙漏中的时光_0
把
jsonContent.json
放到resouces 路径下。在如下读取 File file = new File(ReadJsonSample.class.getClassLoader().getResource("./jsonContent.json").getPath());<...code...>
2019-02-15
初学java 感觉java的json这么麻烦,不像其他语言有个方法,去转。 要引入这个引入那个,然后我自己封装了一个encode 和 decode 还在测试中,只用到hashMap 和ArrayList。测试好后面会发上来
2018-12-26
最赞回答 / 烈焰狂歌
出现这个错误的原因是因为引入的json jar包太老了 <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20160810</version> </dependency>如图,把pom.xml文件中的引用改成我上面这个就行了,也就会把原来的 <ver...
2018-08-26