本文主要是介绍java使用org.json解析josn字符串与json文件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
准备org.json.jar
一、最近做项目需要操作json,趁着这次机会就好好总结一下。本次使用的是org.json提供的jar包,下载地址为mvnrepository(jar包仓库,开发所需的jar包都可以在上面下载)。
二、在eclipse上导入外部jar文件,方法:选中项目右击 -> Build Path -> Configure Build Path -> 选择Libraries -> 点击Add JARs… -> 选择下载的jar包,点击“OK”并应用
创建Json字符串与test.json文件
创建要操作的json字符串:
String jsonStr = "{\"name\":\"小明\",\"information\":{\"sex\":\"man\",\"hobby\":\"sing\"},\"pwd\":\"666\",\"parents\":[{\"father\":\"大明\",\"job\":\"farmer\"},{\"mother\":\"明\",\"job\":\"engineer\"}]}";
创建test.json文件,文件内容为:
{"name":"小红","pwd":"123","information":{"sex":"woman","hobby":"swim"},"parents":[{"father:":"大红","job":"coder"},{"mother":"红","job":"engineer"}]
}
正式解析
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import org.json.JSONArray;
import org.json.JSONObject;
import org.json.JSONTokener;public class Test {public static void main(String[] args) throws IOException {String jsonStr = "{\"name\":\"小明\",\"information\":{\"sex\":\"man\",\"hobby\":\"sing\"},\"pwd\":\"666\",\"parents\":[{\"father\":\"大明\",\"job\":\"farmer\"},{\"mother\":\"明\",\"job\":\"engineer\"}]}";//将整个json字符串转换成JSONObject对象JSONObject jo = new JSONObject(jsonStr);System.out.println("jsonStr:"+jo.toString());System.out.println("name:"+jo.getString("name")+" pwd:"+jo.getString("pwd"));//读取json中的对象JSONObject jo1 = jo.getJSONObject("information");System.out.println("information:"+jo1.toString());System.out.println("sex:"+jo1.getString("sex")+" hobby:"+jo1.getString("hobby"));//读取json中的数组JSONArray ja = jo.getJSONArray("parents");System.out.println(ja.toString());JSONObject jo1_father = ja.getJSONObject(0);System.out.println("father:"+jo1_father.getString("father")+" job:"+jo1_father.getString("job"));JSONObject jo1_mother = ja.getJSONObject(1);System.out.println("mother:"+jo1_mother.getString("mother")+" job:"+jo1_mother.getString("job"));//读取json文件//方法一:按照上面操作json字符串的原理,我们可以先将json文件转换成字符串在进行操作(注意填写正确的文件路径)FileReader fr = new FileReader(new File("file/test.json"));BufferedReader br = new BufferedReader(fr);String fileStr ="";String tempStr = br.readLine();while(tempStr!=null) {fileStr += tempStr;tempStr = br.readLine();}//生成JSONObject对象,后续操作上面相同JSONObject jo2 = new JSONObject(fileStr);System.out.println("jsonFile:"+jo2.toString());//方法二:使用JSONTokener读取json文件,之后转换为JSONObject对象,后续操作与上面相同(注意填写正确的文件路径)JSONTokener jt = new JSONTokener(new FileReader(new File("file/test.json")));JSONObject jo3 = (JSONObject)jt.nextValue();System.out.println("jsonFile:"+jo3.toString());}
}
这篇关于java使用org.json解析josn字符串与json文件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!