本文主要是介绍java 创建临时临时文件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
import java.io.File;
import java.io.IOException;/*** 创建新文件和目录*/
public class CreateFileUtil {/*** 创建单个文件* @param destFileName 目标文件名* @return 创建成功,返回true,否则返回false*/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 + "失败!" + e.getMessage());return false;}}/*** 创建目录* @param destDirName 目标目录名* @return 目录创建成功放回true,否则返回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.mkdir()) {System.out.println("创建目录" + destDirName + "成功!");return true;} else {System.out.println("创建目录" + destDirName + "失败!");return false;}}/*** 创建临时文件* @param prefix 临时文件名的前缀* @param suffix 临时文件名的后缀* @param dirName 临时文件所在的目录,如果输入null,则在用户的文档目录下创建临时文件* @return 临时文件创建成功返回true,否则返回false*/public static String createTempFile(String prefix, String suffix,String dirName) {File tempFile = null;if (dirName == null) {try {// 在默认文件夹下创建临时文件tempFile = File.createTempFile(prefix, suffix);// 返回临时文件的路径return tempFile.getCanonicalPath();} catch (IOException e) {e.printStackTrace();System.out.println("创建临时文件失败!" + e.getMessage());return null;}} else {File dir = new File(dirName);// 如果临时文件所在目录不存在,首先创建if (!dir.exists()) {if (CreateFileUtil.createDir(dirName)) {System.out.println("创建临时文件失败,不能创建临时文件所在的目录!");return null;}}try {// 在指定目录下创建临时文件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:/temp/temp0/temp1";CreateFileUtil.createDir(dirName);// 创建文件String fileName = dirName + "/temp2/tempFile.txt";CreateFileUtil.createFile(fileName);// 创建临时文件String prefix = "temp";String surfix = ".txt";for (int i = 0; i < 10; i++) {System.out.println("创建了临时文件: "+ CreateFileUtil.createTempFile(prefix, surfix, dirName));}}
}
这篇关于java 创建临时临时文件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!