package com.beijxing.TestMain; import java.io.File;
import java.io.IOException; import org.apache.commons.io.FileUtils; import net.sf.json.JSONArray;
import net.sf.json.JSONObject; /**
* JSONObejct属性获取
* @author 作者 : ywp
* @version 创建时间:2016年10月25日 下午10:30:14
*/
public class TestJson2 {
public static void main(String[] args) {
try {
fileToJson();
} catch (IOException e) {
e.printStackTrace();
}
}
public static void fileToJson() throws IOException{
File file = new File(TestJson2.class.getResource("/jsonText.json").getFile());//获取项目根路径下的文件
String content = FileUtils.readFileToString(file);
JSONObject jsonObject = JSONObject.fromObject(content);
System.out.println("jsonObject="+jsonObject); int age = jsonObject.getInt("age");
boolean boo = jsonObject.getBoolean("boo");
if(jsonObject.containsKey("aa")){
String aaString = jsonObject.getString("aa");
}
String name = null;
if(jsonObject.containsKey("name")){
name = jsonObject.getString("name");
}
System.out.println("姓名:"+name);
System.out.println("年龄:"+age);
System.out.println("boo:"+boo);
JSONArray jsonArray = jsonObject.getJSONArray("hobby");
for (int i = 0; i < jsonArray.size(); i++) {
String hobby = (String) jsonArray.get(i);
System.out.println("爱好-"+(i+1)+hobby);
}
}
}