基于java file 文件操作operate file of java的应用_java

java文件操作

复制代码 代码如下:

package com.b510;

 import java.io.File;
 import java.io.FileInputStream;
 import java.io.FileOutputStream;
 import java.io.FileWriter;
 import java.io.InputStream;
 import java.io.PrintWriter;

 /**
  *
  * @author Hongten</br>
  *
  *         文件的操作
  *
  *         
  *
  */
 public class OperateFiles {

     /**
      * @param args
 */
     public static void main(String[] args) {
         OperateFiles operateFiles = new OperateFiles();
         //新建一个文件夹
         operateFiles.newFolder("c:/hongten");
         //新建一个文件,同时向里面写入内容
         operateFiles.newFile("c:/hongten/Hello.txt", "hello,i'm Hongten.你好");
         //删除一个文件
         operateFiles.deleteFile("c:/hongten/Hello.txt");
         //删除一个文件夹
         operateFiles.deleteFolder("c:/hongten");
         //复制文件夹
         operateFiles.copyFolder("c:/hongten", "e:/hongten");
         //提取文件的扩展名
         String expandedName=operateFiles.getExpandedName("c:/hongten/Hello.txt");
         System.out.println(expandedName);
         //提取文件的路径
         System.out.println(operateFiles.getFilePath("c:/hongten/Hello.txt"));
     }

     /**
      * 获得文件的扩展名
      * @param filePath 文件的路径 如:c:/hongten/Hello.txt
      * @return 文件的扩展名 如:txt
 */
     public String getExpandedName(String filePath){
         return filePath.substring(filePath.lastIndexOf(".")+1);
     }
     /**
      * 获得文件的路径
      * @param file 文件的路径
      * @return 文件的路径
 */
     public String getFilePath(String file){
         return file.substring(0,file.lastIndexOf("/")); 
     }
     /**
      * 新建一个目录
      *
      * @param folderPath
      *            新建目录的路径 如:c:\\newFolder
 */
     public void newFolder(String folderPath) {
         try {
             File myFolderPath = new File(folderPath.toString());
             if (!myFolderPath.exists()) {
                 myFolderPath.mkdir();
             }
         } catch (Exception e) {
             System.out.println("新建目录操作出错");
             e.printStackTrace();
         }
     }

     /**
      * 新建一个文件
      *
      * @param filePath
      *            新建文件的目录 如:c:\\hongten.java
 */
     public void newFile(String filePath) {
         try {
             File myFilePathFile = new File(filePath.toString());
             if (!myFilePathFile.exists()) {
                 myFilePathFile.createNewFile();
             }
         } catch (Exception e) {
             System.out.println("新文件创建失败");
             e.printStackTrace();
         }
     }

     /**
      * 新建一个文件,同时向文件中写入内容
      *
      * @param filePath
      *            新建文件的目录 如:c:\\hongten.java
      * @param fileContent
      *            向文件中写入的内容
 */
     public void newFile(String filePath, String fileContent) {
         try {
             newFile(filePath);
             FileWriter resultFile = new FileWriter(filePath);
             PrintWriter myFile = new PrintWriter(resultFile);
             myFile.println(fileContent);
             resultFile.close();
         } catch (Exception e) {
             System.out.println("新建文件操作出错");
             e.printStackTrace();
         }
     }

     /**
      * 删除一个文件
      *
      * @param filePath
      *            要删除文件的绝对路径 如:c:\\hongten\\Hello.txt
 */
     public void deleteFile(String filePath) {
         try {
             File preDelFile = new File(filePath);
             if (preDelFile.exists()) {
                 preDelFile.delete();
             } else {
                 System.out.println(filePath + "不存在!");
             }
         } catch (Exception e) {
             System.out.println("删除文件操作出错");
             e.printStackTrace();
         }
     }

     /**
      * 删除一个文件夹
      *
      * @param folderPath
      *            要删除的文件夹的绝对路径 如:c:\\hongten
 */
     public void deleteFolder(String folderPath) {
         try {
             delAllFiles(folderPath);
             File preDelFoder = new File(folderPath);
             if (preDelFoder.exists()) {
                 preDelFoder.delete();
             } else {
                 System.out.println(folderPath + "不存在!");
             }
         } catch (Exception e) {
             System.out.println("删除文件操作出错");
             e.printStackTrace();
         }
     }

     /**
      * 删除一个文件夹下的所有文件
      *
      * @param folderPath
      *            要删除的文件夹的绝对路径 如:c:\\hongten
 */
     public void delAllFiles(String folderPath) {
         File file = new File(folderPath);
         if (!file.exists()) {
             return;
         }
         if (!file.isDirectory()) {
             return;
         }
         String[] tempList = file.list();
         File temp = null;
         for (int i = 0; i < tempList.length; i++) {
             if (folderPath.endsWith(File.separator)) {
                 temp = new File(folderPath + tempList[i]);
             } else {
                 temp = new File(folderPath + File.separator + tempList[i]);
             }
             if (temp.isFile()) {
                 temp.delete();
             }
             if (temp.isDirectory()) {
                 delAllFiles(folderPath + "/" + tempList[i]);// 先删除文件夹里面的文件
                 deleteFolder(folderPath + "/" + tempList[i]);// 再删除空文件夹
             }
         }
     }

     /**
      * 单个文件的复制
      *
      * @param oldPath
      *            原路径 如:c:\\Hello.java
      * @param newPath
      *            新路径 如:f:\\Hello.java
 */
     public void copyFile(String oldPath, String newPath) {
         try {
             int bytesum = 0;
             int byteread = 0;
             File oldfile = new File(oldPath);
             if (oldfile.exists()) { // 文件存在时
                 InputStream inStream = new FileInputStream(oldPath); // 读入原文件
                 FileOutputStream fs = new FileOutputStream(newPath);
                 byte[] buffer = new byte[1444];
                 // int length = 0;
                 while ((byteread = inStream.read(buffer)) != -1) {
                     bytesum += byteread; // 字节数 文件大小
                     fs.write(buffer, 0, byteread);
                 }
                 inStream.close();
             }
         } catch (Exception e) {
             System.out.println("复制单个文件操作出错");
             e.printStackTrace();

         }
     }

     /**
      * 文件夹的复制
      *
      * @param oldPath
      *            原文件夹路径 如: c:\\hello
      * @param newPath
      *            新文件夹路径 如: e:\\hello
 */
     public void copyFolder(String oldPath, String newPath) {

         try {
             (new File(newPath)).mkdirs(); // 如果文件夹不存在 则建立新文件夹
             File a = new File(oldPath);
             String[] file = a.list();
             File temp = null;
             for (int i = 0; i < file.length; i++) {
                 if (oldPath.endsWith(File.separator)) {
                     temp = new File(oldPath + file[i]);
                 } else {
                     temp = new File(oldPath + File.separator + file[i]);
                 }

                 if (temp.isFile()) {
                     FileInputStream input = new FileInputStream(temp);
                     FileOutputStream output = new FileOutputStream(newPath
                             + "/" + (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(oldPath + "/" + file[i], newPath + "/" + file[i]);
                 }
             }
         } catch (Exception e) {
             System.out.println("复制整个文件夹内容操作出错");
             e.printStackTrace();

         }
     }

     /**
      * 移动单个文件
      *
      * @param oldPath
      *            源文件路径 如:c:\\hello.java
      * @param newPath
      *            新文件路径 如:e:\\hello.java
 */
     public void moveFile(String oldPath, String newPath) {
         copyFile(oldPath, newPath);
         deleteFile(oldPath);
     }

     /**
      * 移动文件夹
      *
      * @param oldPath
      *            原文件夹路径 如:c:\\hongten
      * @param newPath
      *            新文件夹路径 如:e:\\hongten
 */
     public void moveFolder(String oldPath, String newPath) {
         copyFolder(oldPath, newPath);
         deleteFolder(oldPath);
     }

     /**
      * 获得系统根目录绝对路径
      *
      * @return
 */
     public String getPath() {
         String sysPath = this.getClass().getResource("/").getPath();
         // 对路径进行修改
         sysPath = sysPath.substring(1, sysPath.length() - 16);
         return sysPath;
     }

 }

现在有时间把这些东西整理出来,给大家分享一下……

时间: 2025-01-17 15:20:07

基于java file 文件操作operate file of java的应用_java的相关文章

java IO 文件操作

  /* java  文件操作  java中文件操作的类是 File类   可以实现对文件的创建删除  修改等 File类  在  java.io包中  下面是 通过 java.io.File类实现对文件操作 File类没有提供对文件的读写方法 */ import  java.io.*;   //导入io包 class  Test {  public static void main(String []args)  throws Exception //直接吧所有异常抛出给 JVM虚拟机  {

Java编程那些事儿86——文件操作之File类使用

11.3 I/O类使用 由于在IO操作中,需要使用的数据源有很多,作为一个IO技术的初学者,从读写文件开始学习IO技术是一个比较好的选择.因为文件是一种常见的数据源,而且读写文件也是程序员进行IO编程的一个基本能力.本章IO类的使用就从读写文件开始. 11.3.1 文件操作 文件(File)是最常见的数据源之一,在程序中经常需要将数据存储到文件中,例如图片文件.声音文件等数据文件,也经常需要根据需要从指定的文件中进行数据的读取.当然,在实际使用时,文件都包含一个的格式,这个格式需要程序员根据需要

Android的file文件操作详解

  android的文件操作要有权限: 判断SD卡是否插入 Environment.getExternalStorageState().equals( android.os.Environment.MEDIA_MOUNTED); 获得sd卡根目录 File skRoot = Environment.getExternalStorageDirectory(); 获得私有根目录 File fileRoot = Context.getFilesDir()+""; 确定或获得文件夹和文件路径

[python]File文件操作

python中对文件.文件夹(文件操作函数)的操作需要涉及到os模块和shutil模块. 得到当前工作目录,即当前Python脚本工作的目录路径: os.getcwd() 返回指定目录下的所有文件和目录名:os.listdir() 函数用来删除一个文件:os.remove() 删除多个目录:os.removedirs(r"c:\python") 检验给出的路径是否是一个文件:os.path.isfile() 检验给出的路径是否是一个目录:os.path.isdir() 判断是否是绝对路

Java的文件操作--2(Zip文件释放)

  在java中专门有一个对zip文件操作的包(java.util.zip),对zip文件操作挺方便的,上次说写一个zip文件释放程序,花了一天时间终于写完了,起先想起来挺简单的:原理就是将zip文件中的文件夹和文件通过ZipInputStream和ZipEntry类一一得出,然后分别再对应目录下创建文件和文件夹.可是实现起来就不是那么回事了,其中有好多细节问题都不好解决,其中在调用ZipInputStream中的getNextEntry方法时如果zip文件中包含中文路径名或者文件名就会抛出异常

JAVA读取文件夹大小的几种方法实例_java

(一)单线程递归方式 复制代码 代码如下: package com.taobao.test; import java.io.File; public class TotalFileSizeSequential {     public static String fileName = "C:\\Documents and Settings\\Administrator\\桌面\\monkeytalk";     // 递归方式 计算文件的大小    private long getTo

Python 文件操作技巧(File operation) 实例代码分析_python

常用的module是 os ,os.path 和shutil,所以要先引入他们. python遍历文件夹和文件 这个也许是最常用的功能,如下: 复制代码 代码如下: import os  import os.path  rootdir = "D:\\programmer\\training"  for parent, dirnames, filenames in os.walk(rootdir):      #case 1:      for dirname in dirnames: 

Java的文件操作--1

前两天看了<java核心编程>中对于java中的IO输入输出讲解,收获良多,下面的程序是我读完书以后自己写的一个将zip文件集中的文件内容读取出来然后显示(只限于文本,其他文件将会产生乱码),此程序也可通过改进可以得到一个和winzip功能一样的类(但是没有界面,主要是awt不会:--(  ),过两天就把源码贴出来.很简单的一个类,希望对大家有用.这是本人第一次发文章,不足之处请多多指教!!!/** *功能:Zip文件释放,Zip文件目录.选择目录后显示文件内容 *  首先用户输入zip文件路

java IO 文件操作 希望大神解惑

问题描述 如何替换文件中的一行字符串?(也可以是如何在某非结尾行添加数据)已知条件:1:每一行的内容是唯一可识别的2:替换的字串Astr.length()是不确定的,即假设替换字串为Astr,被替换字串为Bstr,以下情况都有可能存在:Astr.length()<Bstr.length()Astr.length()==Bstr.length()Astr.length()>Bstr.length()3:解决方案语言随意,最好java吧....其它的语言希望有讲解~~最好满足下列要求:1:从头到尾