Java文件对象创建目录和文件

    在java中貌似不能同时创建目录和文件,需要分布创建,即不能在创建目录的时候,同时创建该目录下的文件,如果要创建的话,需要分两步,下边是创建的代码
try {
			String path = "D:/test/d.txt";
			File file = new File(path);
			if (!file.getParentFile().exists()) {
				file.getParentFile().mkdirs();
			}
		                  file.createNewFile();
				FileWriter fw = new FileWriter(file);
				fw.write("test");
				fw.close();
		} catch (IOException e) {
			e.printStackTrace();
		}

你可能感兴趣的:(java)