洋妞honey
2017-03-30 17:59
//获取文件
File file = new File(ReadJSONSample.class.getResource("/wxe.json").getFile());
if(file == null){
System.out.print("空指针异常");
}else{
System.out.print(file.getName());
//读取文件内容
String content = FileUtils.readFileToString(file,"utf-8");
JSONObject jsonObject = new JSONObject(content);
System.out.print("姓名是:" + jsonObject.getString("name"));
System.out.print("年龄是:" + jsonObject.getDouble("age"));
System.out.print("是否有女朋友:" + jsonObject.getBoolean("has_girlfriend"));
System.out.print("姓名是:" + jsonObject.getString("name"));
}
路径是在src下,不是在java包下
//获取文件
File file = new File("C:\\Users\\65197\\jsontest\\src\\main\\java\\wxe.json");
改成这样就没有错了
路径对吗 代码在哪个文件?
JSON快速入门(Java版)
102037 学习 · 163 问题
相似问题