package com.ptn.utils; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.BufferedReader; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.HashSet; import java.util.Set; import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream; import java.util.zip.ZipOutputStream; import org.apache.log4j.Logger; /** * 文件工具类 * * @author jiqinlin * */ public class FileTool { private static final Logger log = Logger.getLogger(FileTool.class); /** * 创建目录 * * @param dir 目录 */ public static void mkdir(String dir) { try { String dirTemp = dir; File dirPath = new File(dirTemp); if (!dirPath.exists()) { dirPath.mkdir(); } } catch (Exception e) { log.error("创建目录操作出错: "+e.getMessage()); e.printStackTrace(); } } /** * 新建文件 * * @param fileName * String 包含路径的文件名 如:E:\phsftp\src\123.txt * @param content * String 文件内容 * */ public static void createNewFile(String fileName, String content) { try { String fileNameTemp = fileName; File filePath = new File(fileNameTemp); if (!filePath.exists()) { filePath.createNewFile(); } FileWriter fw = new FileWriter(filePath); PrintWriter pw = new PrintWriter(fw); String strContent = content; pw.println(strContent); pw.flush(); pw.close(); fw.close(); } catch (Exception e) { log.error("新建文件操作出错: "+e.getMessage()); e.printStackTrace(); } } /** * 删除文件 * * @param fileName 包含路径的文件名 */ public static void delFile(String fileName) { try { String filePath = fileName; java.io.File delFile = new java.io.File(filePath); delFile.delete(); } catch (Exception e) { log.error("删除文件操作出错: "+e.getMessage()); e.printStackTrace(); } } /** * 删除文件夹 * * @param folderPath 文件夹路径 */ public static void delFolder(String folderPath) { try { // 删除文件夹里面所有内容 delAllFile(folderPath); String filePath = folderPath; java.io.File myFilePath = new java.io.File(filePath); // 删除空文件夹 myFilePath.delete(); } catch (Exception e) { log.error("删除文件夹操作出错"+e.getMessage()); e.printStackTrace(); } } /** * 删除文件夹里面的所有文件 * * @param path 文件夹路径 */ public static void delAllFile(String path) { File file = new File(path); if (!file.exists()) { return; } if (!file.isDirectory()) { return; } String[] childFiles = file.list(); File temp = null; for (int i = 0; i < childFiles.length; i++) { //File.separator与系统有关的默认名称分隔符 //在UNIX系统上,此字段的值为'/';在Microsoft Windows系统上,它为 '\'。 if (path.endsWith(File.separator)) { temp = new File(path + childFiles[i]); } else { temp = new File(path + File.separator + childFiles[i]); } if (temp.isFile()) { temp.delete(); } if (temp.isDirectory()) { delAllFile(path + "/" + childFiles[i]);// 先删除文件夹里面的文件 delFolder(path + "/" + childFiles[i]);// 再删除空文件夹 } } } /** * 复制单个文件 * * @param srcFile * 包含路径的源文件 如:E:/phsftp/src/abc.txt * @param dirDest * 目标文件目录;若文件目录不存在则自动创建 如:E:/phsftp/dest * @throws IOException */ public static void copyFile(String srcFile, String dirDest) { try { FileInputStream in = new FileInputStream(srcFile); mkdir(dirDest); FileOutputStream out = new FileOutputStream(dirDest+"/"+new File(srcFile).getName()); int len; byte buffer[] = new byte[1024]; while ((len = in.read(buffer)) != -1) { out.write(buffer, 0, len); } out.flush(); out.close(); in.close(); } catch (Exception e) { log.error("复制文件操作出错:"+e.getMessage()); e.printStackTrace(); } } /** * 复制文件夹 * * @param oldPath * String 源文件夹路径 如:E:/phsftp/src * @param newPath * String 目标文件夹路径 如:E:/phsftp/dest * @return boolean */ public static void copyFolder(String oldPath, String newPath) { try { // 如果文件夹不存在 则新建文件夹 mkdir(newPath); File file = new File(oldPath); String[] files = file.list(); File temp = null; for (int i = 0; i < files.length; i++) { if (oldPath.endsWith(File.separator)) { temp = new File(oldPath + files[i]); } else { temp = new File(oldPath + File.separator + files[i]); } if (temp.isFile()) { FileInputStream input = new FileInputStream(temp); FileOutputStream output = new FileOutputStream(newPath + "/" + (temp.getName()).toString()); byte[] buffer = new byte[1024 * 2]; int len; while ((len = input.read(buffer)) != -1) { output.write(buffer, 0, len); } output.flush(); output.close(); input.close(); } if (temp.isDirectory()) {// 如果是子文件夹 copyFolder(oldPath + "/" + files[i], newPath + "/" + files[i]); } } } catch (Exception e) { log.error("复制文件夹操作出错:"+e.getMessage()); e.printStackTrace(); } } /** * 移动文件到指定目录 * * @param oldPath 包含路径的文件名 如:E:/phsftp/src/ljq.txt * @param newPath 目标文件目录 如:E:/phsftp/dest */ public static void moveFile(String oldPath, String newPath) { copyFile(oldPath, newPath); delFile(oldPath); } /** * 移动文件到指定目录,不会删除文件夹 * * @param oldPath 源文件目录 如:E:/phsftp/src * @param newPath 目标文件目录 如:E:/phsftp/dest */ public static void moveFiles(String oldPath, String newPath) { copyFolder(oldPath, newPath); delAllFile(oldPath); } /** * 移动文件到指定目录,会删除文件夹 * * @param oldPath 源文件目录 如:E:/phsftp/src * @param newPath 目标文件目录 如:E:/phsftp/dest */ public static void moveFolder(String oldPath, String newPath) { copyFolder(oldPath, newPath); delFolder(oldPath); } /** * 解压zip文件 * * @param srcDir * 解压前存放的目录 * @param destDir * 解压后存放的目录 * @throws Exception */ public static void jieYaZip(String srcDir, String destDir) throws Exception { int leng = 0; byte[] b = new byte[1024*2]; /** 获取zip格式的文件 **/ File[] zipFiles = new FileFilterByExtension("zip").getFiles(srcDir); if(zipFiles!=null && !"".equals(zipFiles)){ for (int i = 0; i < zipFiles.length; i++) { File file = zipFiles[i]; /** 解压的输入流 * */ ZipInputStream zis = new ZipInputStream(new FileInputStream(file)); ZipEntry entry=null; while ((entry=zis.getNextEntry())!=null) { File destFile =null; if(destDir.endsWith(File.separator)){ destFile = new File(destDir + entry.getName()); }else { destFile = new File(destDir + "/" + entry.getName()); } /** 把解压包中的文件拷贝到目标目录 * */ FileOutputStream fos = new FileOutputStream(destFile); while ((leng = zis.read(b)) != -1) { fos.write(b, 0, leng); } fos.close(); } zis.close(); } } } /** * 压缩文件 * * @param srcDir * 压缩前存放的目录 * @param destDir * 压缩后存放的目录 * @throws Exception */ public static void yaSuoZip(String srcDir, String destDir) throws Exception { String tempFileName=null; byte[] buf = new byte[1024*2]; int len; //获取要压缩的文件 File[] files = new File(srcDir).listFiles(); if(files!=null){ for (File file : files) { if(file.isFile()){ FileInputStream fis = new FileInputStream(file); BufferedInputStream bis = new BufferedInputStream(fis); if (destDir.endsWith(File.separator)) { tempFileName = destDir + file.getName() + ".zip"; } else { tempFileName = destDir + "/" + file.getName() + ".zip"; } FileOutputStream fos = new FileOutputStream(tempFileName); BufferedOutputStream bos = new BufferedOutputStream(fos); ZipOutputStream zos = new ZipOutputStream(bos);// 压缩包 ZipEntry ze = new ZipEntry(file.getName());// 压缩包文件名 zos.putNextEntry(ze);// 写入新的ZIP文件条目并将流定位到条目数据的开始处 while ((len = bis.read(buf)) != -1) { zos.write(buf, 0, len); zos.flush(); } bis.close(); zos.close(); } } } } /** * 读取数据 * * @param inSream * @param charsetName * @return * @throws Exception */ public static String readData(InputStream inSream, String charsetName) throws Exception{ ByteArrayOutputStream outStream = new ByteArrayOutputStream(); byte[] buffer = new byte[1024]; int len = -1; while( (len = inSream.read(buffer)) != -1 ){ outStream.write(buffer, 0, len); } byte[] data = outStream.toByteArray(); outStream.close(); inSream.close(); return new String(data, charsetName); } /** * 一行一行读取文件,适合字符读取,若读取中文字符时会出现乱码 * * @param path * @return * @throws Exception */ public static Set<String> readFile(String path) throws Exception{ Set<String> datas=new HashSet<String>(); FileReader fr=new FileReader(path); BufferedReader br=new BufferedReader(fr); String line=null; while ((line=br.readLine())!=null) { datas.add(line); } br.close(); fr.close(); return datas; } }
相关推荐
java文件操作类java文件操作类java文件操作类java文件操作类java文件操作类java文件操作类java文件操作类java文件操作类java文件操作类java文件操作类java文件操作类java文件操作类java文件操作类java文件操作类java...
Java文件操作封装类
java文件操作工具类是java中针对文件操作的一个工具类,可以方便的读取,下载,上传文件等操作,希望可以帮到大家。
Java文件操作是编程中常见的任务,涉及到文件的创建、删除、读取、写入以及更复杂的操作如复制、移动、加密、压缩等。以下是一些关键的Java文件操作知识点: 1. **创建文件夹**:使用`java.io.File`类的`mkdir()`或...
java视频教程 Java文件操作 JavaFile
如何在Java中操作文件呢?转载供大家欣赏
本项目"java文件操作(增删改查)"是基于控制台实现的一个无界面程序,利用Eclipse集成开发环境编写,实现了基本的文件管理功能。下面我们将深入探讨这些知识点。 首先,我们要了解Java中的`java.io`包,它是处理输入...
Java文件操作一例:Copy 复制文件,虽然是复制文件,不过通过本源码你可以学习很多相关的Java基础技巧,比如Java对文件的事件处理、取得目录内容的事件处理、如何弹出文件选择器、如何得到选择文件的绝对路径、如何...
java文件操作大全.chm
java 文件操作 压缩文件 解压文件 复制文件 复制文件夹
java 文件操作工具类
java 文件操作 包括 文件删除 导出jsp Word 格式文件 ,文件合并修改等。
《Java文件操作大全》电子书 本文汇集常用文件操作方法,包括文件的建立/检查与删除,目录的建立/检查与删除,取出目录中文件,文件属性的取得,逐行读取数据等等。
在Java编程语言中,文件操作是一项基础且重要的任务,它涉及到对文件的读取、写入、创建、删除等操作。文件操作主要依赖于Java的I/O(Input/Output)库,包括字节流(Byte Stream)和字符流(Character Stream),...
最全的java文件操作大全,包括文件的存储,建立,判断文件是否存在,建立文件删除文件,附加源码!!!
java 文件操作 ;base64--转码与解码 ;excel --读写 ;properties--读 ; txt--读写 ; xml --读写 ;压缩包-- 解压,打包; zip --解压,打包 ;调用本地exe
Java文件操作中的一些常用方法的总结,可以参考参考啦!