Creating file on Windows 7 causes “Access denied” exception

前端 未结 3 1509
灰色年华
灰色年华 2020-12-06 23:03

I have a Java application were the user can create a text file and save it wherever he wants on his computer using this code :

File txtFile = new File( path          


        
3条回答
  •  时光说笑
    2020-12-06 23:22

    Windows Vista and Windows 7 have UAC enabled. UAC denies creating new files in SOME locations, without administrative privileges.

    Check your permissions and make sure to execute the java executable in ADMINISTRATIVE Account, OR disable UAC.

    To do that, go to "Start" type in "CMD.EXE" -> right click on the cmd.exe file and Run As Administrator. Then navigate to the location containing the .class file. Then type in java ClassFile and hit enter

提交回复
热议问题