我在撰写一个程序, 我试图在当前目录中创建一个新的文本文件, 然后写一个字符串到它。 但是, 当试图创建文件时, 这个代码块 :
//Create the output text file.
File outputText = new File(filePath.getParentFile() + "\Decrypted.txt");
try
{
outputText.createNewFile();
}
catch (IOException e)
{
e.printStackTrace();
}
是给我这个错误信息:
java.io.IOException: The system cannot find the path specified
at java.io.WinNTFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(Unknown Source)
at code.Crypto.decrypt(Crypto.java:55)
at code.Crypto.main(Crypto.java:27)
由于这个原因,我无法写信给文件,因为文件自然不存在。 我在这里做错什么了?