访问被拒绝(文件未找到例外)

时间:2014-12-14 13:07:03

标签: java file filenotfoundexception

我正在尝试将文件保存到我使用JfileChooser获取的路径中,但是当我保存在此路径中时它会抛出:

java.io.FileNotFoundException: C:\Users\Documents (Access is denied)

这是我的代码:

JSONObject jsonObject = new JSONObject();
        jsonObject.put(testoNumeroIntervalli,new Integer(singletonAutomobilista.getNumeroIntervalli()));
        try{

            FileWriter file = new FileWriter(percorso);
            file.write(jsonObject.toJSONString());
            file.flush();
            file.close();

        }catch(Exception e){
            e.printStackTrace();

        }

任何人都可以帮助我?

1 个答案:

答案 0 :(得分:0)

这可能是因为该路径未对相关用户开放。尝试将其保存在此用户可访问的位置,例如“c:/ documents /".

下的新目录