4
我使用Java創建一個新的文件,但我得到那朵例外:無法創建新文件:該設備未準備好
Exception in thread "main" java.io.IOException: The device is not ready
at java.io.WinNTFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(File.java:947)
at pdfconverter.PdfConverter.main(PdfConverter.java:96)
Java結果:1
在我的線96是這樣的條件:
if (!logfile.exists()) {
logfile.createNewFile();//line 96
}
我已經使用在此之前amny次,我不明白這是怎麼回事因爲我作爲管理員登錄。請幫忙。