- 浏览: 11850 次
- 性别:
- 来自: 广州
文章分类
最新评论
package com.test; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.PrintWriter; import java.net.URL; import java.util.StringTokenizer; public class FileUtil { /** * 读取文本文件内容 * * @param filePathAndName * 带有完整绝对路径的文件名 * @param encoding * 文本文件打开的编码方式 * @return 返回文本文件的内容 */ public static String readTxt(String filePathAndName, String encoding) throws IOException { encoding = encoding.trim(); StringBuffer str = new StringBuffer(""); String st = ""; try { FileInputStream fs = new FileInputStream(filePathAndName); InputStreamReader isr; if (encoding.equals("")) { isr = new InputStreamReader(fs); } else { isr = new InputStreamReader(fs, encoding); } BufferedReader br = new BufferedReader(isr); try { String data = ""; while ((data = br.readLine()) != null) { str.append(data + "\r\n"); } } catch (IOException e) { str.append(e.toString()); } st = str.toString(); } catch (IOException es) { throw es; } return st; } /** * 新建文件 * * @param filePathAndName * 文本文件完整绝对路径及文件名 * @param fileContent * 文本文件内容 * @return * @throws Exception */ public static void createFile(String filePathAndName, String fileContent) throws Exception { try { String filePath = filePathAndName; filePath = filePath.toString(); File myFilePath = new File(filePath); if (!myFilePath.exists()) { myFilePath.createNewFile(); } FileWriter resultFile = new FileWriter(myFilePath); PrintWriter myFile = new PrintWriter(resultFile); String strContent = fileContent; myFile.println(strContent); myFile.close(); resultFile.close(); } catch (Exception e) { throw new Exception("创建文件操作出错", e); } } /** * 有编码方式的文件创建 * * @param filePathAndName * 文本文件完整绝对路径及文件名 * @param fileContent * 文本文件内容 * @param encoding * 编码方式 例如 GBK 或者 UTF-8 * @return * @throws Exception */ public static void createFile(String filePathAndName, String fileContent, String encoding) throws Exception { try { String filePath = filePathAndName; filePath = filePath.toString(); File myFilePath = new File(filePath); if (!myFilePath.exists()) { myFilePath.createNewFile(); } PrintWriter myFile = new PrintWriter(myFilePath, encoding); String strContent = fileContent; myFile.println(strContent); myFile.close(); } catch (Exception e) { throw new Exception("创建文件操作出错", e); } } /** * 创建文件夹 * * @param filePath * @throws Exception */ public static String createFolder(String filePath) throws Exception { File file = new java.io.File(filePath); try { if (!file.exists()) { if (!file.mkdir()) { throw new IOException("创建文件夹:" + filePath + "出错"); } } return filePath; } catch (Exception e) { throw e; } } /** * 多级目录创建 * * @param folderPath * 准备要在本级目录下创建新目录的目录路径 例如 E:\\Test\\java\\ * @param paths * 无限级目录参数,各级目录以单数线区分 例如 a|b|c * @return 返回创建文件夹后的路径 例如 c:myfa c * @throws Exception */ public static String createFolders(String folderPath, String paths) throws Exception { String txts = folderPath; try { String txt; txts = folderPath; StringTokenizer st = new StringTokenizer(paths, "|"); for (int i = 0; st.hasMoreTokens(); i++) { txt = st.nextToken().trim(); txts = createFolder(txts + txt + "/"); } } catch (Exception e) { throw new Exception("创建目录操作出错!", e); } return txts; } /** * 复制单个文件 * * @param oldPathFile * 准备复制的文件源 * @param newPathFile * 拷贝到新绝对路径带文件名 * @return * @throws Exception */ public static void copyFile(String oldPathFile, String newPathFile) throws Exception { try { int bytesum = 0; int byteread = 0; File oldfile = new File(oldPathFile); if (oldfile.exists()) { // 文件存在时 InputStream inStream = new FileInputStream(oldPathFile); // 读入原文件 FileOutputStream fs = new FileOutputStream(newPathFile); byte[] buffer = new byte[1444]; while ((byteread = inStream.read(buffer)) != -1) { bytesum += byteread; // 字节数 文件大小 System.out.println(bytesum); fs.write(buffer, 0, byteread); } inStream.close(); } } catch (Exception e) { throw e; } } /** * <p> * 将sourceFolder文件夹下的内容复制到destinationFolder文件夹下 * </p> * <p> * 如destinationFolder文件夹不存在则自动创建 * </p> * * @param sourceFolder * 源文件夹 如:C:\\aaa * @param destinationFolder * 目标文件夹 D:\\java * @throws Exception */ public static void copyFolder(String sourceFolder, String destinationFolder) throws Exception { try { new File(destinationFolder).mkdirs(); // 如果文件夹不存在 则建立新文件夹 File a = new File(sourceFolder); String[] file = a.list(); File temp = null; for (int i = 0; i < file.length; i++) { if (sourceFolder.endsWith(File.separator)) { temp = new File(sourceFolder + file[i]); } else { temp = new File(sourceFolder + File.separator + file[i]); } if (temp.isFile()) { FileInputStream input = new FileInputStream(temp); FileOutputStream output = new FileOutputStream( destinationFolder + "/" + (temp.getName()).toString()); byte[] b = new byte[1024 * 5]; int len; while ((len = input.read(b)) != -1) { output.write(b, 0, len); } output.flush(); output.close(); input.close(); } if (temp.isDirectory()) {// 如果是子文件夹 copyFolder(sourceFolder + "/" + file[i], destinationFolder + "/" + file[i]); } } } catch (Exception e) { throw new Exception("复制整个文件夹内容操作出错", e); } } /** * 删除文件 * * @param filePathAndName * 文本文件完整绝对路径及文件名 * @return Boolean 成功删除返回true遭遇异常返回false */ public static void delFile(String filePathAndName) throws Exception { try { String filePath = filePathAndName; File myDelFile = new File(filePath); if (myDelFile.exists()) { myDelFile.delete(); } else { throw new IOException(filePathAndName + "删除文件操作出错"); } } catch (IOException e) { throw new Exception(filePathAndName + "删除文件操作出错", e); } } /** * 删除文件夹 * * @param folderPath * 文件夹完整绝对路径 * @return * @throws Exception */ public static void delFolder(String folderPath) throws Exception { try { delAllFile(folderPath); // 删除完里面所有内容 String filePath = folderPath; filePath = filePath.toString(); java.io.File myFilePath = new java.io.File(filePath); boolean result = myFilePath.delete(); // 删除空文件夹 if (!result) { throw new IOException("文件夹:" + folderPath + ",删除失败"); } } catch (IOException e) { throw new Exception("删除文件夹出错", e); } } /** * 删除文件及文件夹下所有文件 * * @return * @throws IOException */ public static boolean delAllFile(String filePath) throws IOException { File file = new File(filePath); if (!file.exists())// 文件夹不存在不存在 throw new IOException("指定目录不存在:" + file.getName()); boolean rslt = true;// 保存中间结果 if (!(rslt = file.delete())) {// 先尝试直接删除 // 若文件夹非空。枚举、递归删除里面内容 File subs[] = file.listFiles(); for (int i = 0; i <= subs.length - 1; i++) { if (subs[i].isDirectory()) delAllFile(subs[i].toString());// 递归删除子文件夹内容 rslt = subs[i].delete();// 删除子文件夹本身 } // rslt = file.delete();// 删除此文件夹本身 } if (!rslt) throw new IOException("无法删除:" + file.getName()); // 删除文件 return true; } /** * 移动文件 * * @param oldPath * @param newPath * @return * @throws Exception */ public static void moveFile(String oldPath, String newPath) throws Exception { try { copyFile(oldPath, newPath); delFile(oldPath); } catch (Exception e) { throw e; } } /** * 移动目录 * * @param oldPath * @param newPath * @return */ public static void moveFolder(String oldPath, String newPath) { try { copyFolder(oldPath, newPath); delFolder(oldPath); } catch (Exception e) { e.printStackTrace(); } } /** * <p> * 取得当前类文件所在绝对路径 * </p> * <p> * 如:E:/workspace/mobile/WebRoot/WEB-INF/classes/com/mobileSky/ty/utils/ * </p> * * @return */ public static String getClassPath() { String strClassName = FileUtil.class.getName(); String strPackageName = ""; if (FileUtil.class.getPackage() != null) { strPackageName = FileUtil.class.getPackage().getName(); } String strClassFileName = ""; if (!"".equals(strPackageName)) { strClassFileName = strClassName.substring( strPackageName.length() + 1, strClassName.length()); } else { strClassFileName = strClassName; } URL url = null; url = FileUtil.class.getResource(strClassFileName + ".class"); String strURL = url.toString(); strURL = strURL.substring(strURL.indexOf('/') + 1, strURL .lastIndexOf('/')); return strURL + "/"; } /** * 取得当前项目根目录,如:E:/workspace/mobile/,其中mobile为项目名 * * @param projectName * @return */ public static String getProject(String projectName) { String classPath = getClassPath(); return classPath.substring(0, classPath.indexOf(projectName) + projectName.length() + 1); } /** * 将C:\aaa\dsa转换为C:/aaa/dsa * * @param path * @return */ public static String getStr(String path) { String result = ""; char[] pathChar = path.toCharArray(); for (int i = 0; i < pathChar.length; i++) { if (pathChar[i] == '\\') { pathChar[i] = '/'; } result += pathChar[i]; } return result; } public static void main(String arg[]) { try { copyFolder("E:\\百度网页\\百度指数搜索_java.files", "E:\\百度网页\\重新生产\\百度指数搜索_java.files"); //moveFolder("E:\\百度网页\\百度指数搜索_java.files","E:\\百度网页\\xxx\\百度指数搜索_java.files"); // delAllFile("E:\\Test\\java"); // delFolder("E:\\Test\\java"); // createFile("E:\\Test\\java\\a.xml", // "<abc>\r\n<a>\r\n</a>\r\n</abc>"); // createFolder("E:\\Test\\java"); // createFolders("E:\\Test\\java\\", "一级|二级|三级"); //String a = readTxt("E:\\Test\\java\\a.xml", "GBK"); //System.out.println(a); } catch (Exception e) { e.printStackTrace(); } } }
- 9B创想项目部L.rar (47.9 KB)
- 下载次数: 4
发表评论
文章已被作者锁定,不允许评论。
相关推荐
### 知识点详解 #### 一、二级目录结构及其...通过以上分析可以看出,本实习通过模拟实现采用了二级目录结构的磁盘文件系统中的文件操作,不仅加深了对文件系统原理的理解,还锻炼了数据结构设计和算法实现的能力。
可易文件操作日志监控 是一个功能非常实用的软件,它可以对文件文件夹进行操作记录,例如:新建、修改、重命名、删除、复制等都可以实现记录下来,把这些记录显示到一个表格中,包含操作时间、操作类型、文件所在...
**Qt文件操作示例程序** Qt是一个跨平台的C++图形用户界面应用程序开发框架,它提供了丰富的API用于处理各种文件操作。在这个示例程序中,我们可能会看到如何在Qt中进行基本的文件读写、文件操作监控以及进度条的...
在IT领域,操作系统中的文件操作管理是一项基础且重要的功能。本报告将深入探讨操作系统如何实现文件的打开、关闭、读写以及复制等操作,旨在帮助读者理解和掌握这些基础知识。 一、文件打开 文件打开是进行任何...
编写带缓存的文件操作类 从执行体程序库中的CLLogger类可知,通过缓存要写入文件中的数据,能够提高读写磁盘的性能 请编写一个文件操作的封装类,其要求如下: 需要提供open/read/write/lseek/close等函数的封装函数...
CANoe/CAPL 文件操作脚本是用于自动化处理CANoe环境中的配置、数据记录和分析的编程工具。CANoe是一款广泛应用于汽车电子系统的诊断、测试和测量的软件,而CAPL(CANoe Application Programming Language)是CANoe内...
C语言文件操作及函数大全 2.文件操作函数: (1)文件打开函数fopen fopen函数用来打开一个文件,其调用的一般形式为: 文件指针名=fopen("文件名","使用文件方式"); 其中,“文件指针名”必须是被说明为FILE 类型的...
收集了21个文件操作VC 源码实例,基础级别的VC 文件操作实例,获得INI文件指定段的全部键名和键值、文件对话框、临时文件创建、目录创建、获得INI文件的全部段名、查找文件、复制文件、获得或设置进程的当前目录、...
文件操作.ppt
大学本科操作系统实验 《磁盘文件操作模拟C语言》,花了两天的时间调试。
原数据存放在StreamingAsset中,首次启动复制到persistentDataPath,以后进行更新和读取都在persistentDataPath中使用File进行文件操作。需要恢复书序的时候从StreamingAsset中获取即可。
uni-app手机,模拟器文件操作
易语言文件操作类模块源码,文件操作类模块,取对象,取驱动器集合,追加路径,取驱动器名称,取父文件夹名称,取文件名,取不带扩展名的文件名,取扩展名,取完整路径名,取临时文件名,驱动器是否存在,文件是否存在,文件夹是否...
Java文件操作封装类
PHP 写的一个简单文件操作类,支持 PHP4 PHP5
C#编程 文件操作 FileCopyPlan(源码)(源码)C#编程 文件操作 FileCopyPlan(源码)(源码)C#编程 文件操作 FileCopyPlan(源码)(源码)C#编程 文件操作 FileCopyPlan(源码)(源码)C#编程 文件操作 FileCopyPlan(源码)(源码)...
Linux 操作系统文件和目录操作报告 Linux 操作系统中的文件类型可以...在 Linux 操作系统中,文件操作命令非常丰富,包括 touch、cp、mv、rm、cat、find 等命令。这些命令可以帮助用户高效地管理和操作文件和目录。
C#编程 文件操作 WordReplace(源码)(源码)C#编程 文件操作 WordReplace(源码)(源码)C#编程 文件操作 WordReplace(源码)(源码)C#编程 文件操作 WordReplace(源码)(源码)C#编程 文件操作 WordReplace(源码)(源码)C#...
文件IO 文件操作 操作文件 标准IO和文件IO 文件IO是计算机系统中最基本的输入/输出操作之一,它允许程序访问和操作文件。文件IO可以分为两大类:标准IO和文件IO。标准IO是指使用标准输入输出流来读取和写入文件,而...
本项目“C++使用hookapi监控文件操作程序”正是基于这一技术,用于实现对文件系统事件的实时监控。下面将详细介绍相关的知识点。 首先,`hookapi`是指Windows API中的钩子(Hook)机制。钩子是一种让程序能够监视...