我试图打印这个json文档中的内容:
{ “名字”:“丹尼尔”, “年龄”:19 }
所以我根据下一个教程编写了一个代码:http://www.tutorialspoint.com/json/json_java_example.htm
这是我的代码:
JSONParser jsonParser = new JSONParser();
try {
String path = "File.json";
JSONObject jsonObject = (JSONObject) jsonParser.parse(new FileReader(path));
String name = (String)jsonObject.get("name");
System.out.println(name);
}
catch (FileNotFoundException e1) {
e1.printStackTrace();
}
catch (IOException e2) {
e2.printStackTrace();
}
catch (ParseException e3) {
e3.printStackTrace();
}
当我运行它时,它不会抛出这样的文件或目录。请帮忙。我正确地建立了我的资源路线,我用其他文件测试了它。