Exception in thread "main" java.io.FileNotFoundException: d:\aaaa\a.txt (系统找不到指定的路径。)

问题

学习IO流时,想换字符持久化到 a.txt 文件中,代码如下:

public class Test {
	
	public static void main(String[] args) throws IOException {
		
		File file=new File("d:/aaaa/a.txt");

		if(!file.exists()){
		    file.mkdirs();
		}
		FileWriter writer=new FileWriter(file,true);
		
		
		Map paramMap=new HashMap();
		paramMap.put("id", 101);
		paramMap.put("name", "张三");
		paramMap.put("score", "62");
		
		String str=JSONUtils.beanToJson(paramMap);
		System.out.println(str);
		
		writer.write(str);
		writer.write("\r\n");
		
		writer.close();
	}
}

执行代码后,抛出异常:
Exception in thread "main" java.io.FileNotFoundException: d:\aaaa\a.txt (系统找不到指定的路径。)

如图所示:
Exception in thread "main" java.io.FileNotFoundException: d:\aaaa\a.txt (系统找不到指定的路径。)

分析原因:

实际上 d:/aaaa/a.txt 文件已被创建成功,只是a.txt 被当作目录创建的,而不是文件。
Exception in thread "main" java.io.FileNotFoundException: d:\aaaa\a.txt (系统找不到指定的路径。)

解决方法:

d:/aaaa 当作目录创建, a.txt 被当成空文件来创建。

public class Test {
	
	public static void main(String[] args) throws IOException {
		
		File file=new File("d:/aaaa/a.txt");

		if (!file.exists()) {
			// 1,先得到文件的上级目录,并创建上级目录
			file.getParentFile().mkdirs();
			try {
				// 2,再创建文件
				file.createNewFile();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
		
		FileWriter writer=new FileWriter(file,true);		
		
		Map paramMap=new HashMap();
		paramMap.put("id", 101);
		paramMap.put("name", "张三");
		paramMap.put("score", "62");
		
		String str=JSONUtils.beanToJson(paramMap);
		System.out.println(str);
		
		writer.write(str);
		writer.write("\r\n");
		
		writer.close();
	}
}

测试

执行代码后,没有报错,看结果:
Exception in thread "main" java.io.FileNotFoundException: d:\aaaa\a.txt (系统找不到指定的路径。)

上一篇:1097 特殊的整数数列求和


下一篇:Day64