java prompts that the system cannot find the specified file
Solution:
1. Check whether the file path is correct
2. In addition, when using OutputStream, if the file does not exist, the file will be automatically created.
However, if the folder does not exist, an error message "The system cannot find the specified path" will be reported. Use the following code to create the folder first
File fileDir = new File(“C:/test/”); fileDir.mkdirs();
Then you can create the file
File file = new File(“test.txt”); file.createNewFile();
php Chinese website, a large number of free Java introductory tutorials, welcome to learn online!
The above is the detailed content of Java prompts that the system cannot find the specified file. For more information, please follow other related articles on the PHP Chinese website!