Java创建文件夹及文件实例代码

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

Java创建⽂件夹及⽂件实例代码复制代码代码如下:
package com.xhkj.util;
import java.io.File;
import java.io.IOException;
public class CreateFileUtil {
public static boolean CreateFile(String destFileName) {
File file = new File(destFileName);
if (file.exists()) {
System.out.println("创建单个⽂件" + destFileName + "失败,⽬标⽂件已存在!");
return false;
}
if (destFileName.endsWith(File.separator)) {
System.out.println("创建单个⽂件" + destFileName + "失败,⽬标不能是⽬录!");
return false;
}
if (!file.getParentFile().exists()) {
System.out.println("⽬标⽂件所在路径不存在,准备创建。

");
if (!file.getParentFile().mkdirs()) {
System.out.println("创建⽬录⽂件所在的⽬录失败!");
return false;
}
}
// 创建⽬标⽂件
try {
if (file.createNewFile()) {
System.out.println("创建单个⽂件" + destFileName + "成功!");
return true;
} else {
System.out.println("创建单个⽂件" + destFileName + "失败!");
return false;
}
} catch (IOException e) {
e.printStackTrace();
System.out.println("创建单个⽂件" + destFileName + "失败!");
return false;
}
}
public static boolean createDir(String destDirName) {
File dir = new File(destDirName);
if(dir.exists()) {
System.out.println("创建⽬录" + destDirName + "失败,⽬标⽬录已存在!");
return false;
}
if(!destDirName.endsWith(File.separator))
destDirName = destDirName + File.separator;
// 创建单个⽬录
if(dir.mkdirs()) {
System.out.println("创建⽬录" + destDirName + "成功!");
return true;
} else {
System.out.println("创建⽬录" + destDirName + "成功!");
return false;
}
}
public static String createTempFile(String prefix, String suffix, String dirName) {
File tempFile = null;
try{
if(dirName == null) {
// 在默认⽂件夹下创建临时⽂件
tempFile = File.createTempFile(prefix, suffix);
return tempFile.getCanonicalPath();
}
else {
File dir = new File(dirName);
// 如果临时⽂件所在⽬录不存在,⾸先创建
if(!dir.exists()) {
if(!CreateFileUtil.createDir(dirName)){
System.out.println("创建临时⽂件失败,不能创建临时⽂件所在⽬录!");
return null;
}
}
tempFile = File.createTempFile(prefix, suffix, dir);
return tempFile.getCanonicalPath();
}
} catch(IOException e) {
e.printStackTrace();
System.out.println("创建临时⽂件失败" + e.getMessage());
return null;
}
}
public static void main(String[] args) {
// 创建⽬录
String dirName = "c:/test/test0/test1";
CreateFileUtil.createDir(dirName);
// 创建⽂件
String fileName = dirName + "/test2/testFile.txt";
CreateFileUtil.CreateFile(fileName);
// 创建临时⽂件
String prefix = "temp";
String suffix = ".txt";
for(int i = 0; i < 10; i++) {
System.out.println("创建了临时⽂件:" + CreateFileUtil.createTempFile(prefix, suffix, dirName)); }
}
}。

相关文档
最新文档