问答详情
源自:3-4 从文件读取JSON

读取文件时候空指针异常

//获取文件
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"));
}http://img.mukewang.com/58dcd6ef0001a04c03590223.jpg

提问者:洋妞honey 2017-03-30 17:59

个回答

  • 凌晨的太阳
    2017-06-13 00:32:06

    路径是在src下,不是在java包下


  • 洋妞honey
    2017-03-30 18:14:17

    //获取文件

    File file = new File("C:\\Users\\65197\\jsontest\\src\\main\\java\\wxe.json");

    改成这样就没有错了

  • perpetual_sunrise
    2017-03-30 18:07:57

    路径对吗  代码在哪个文件?