当前位置:  编程技术>java/j2ee

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

    来源: 互联网  发布时间:2014-10-24

    本文导语:  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  *   *         文件的操作  * ...

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

  *
  *         文件的操作
  *
  *         
  *
  */
 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;
     }

 }

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

    
 
 

您可能感兴趣的文章:

  • java命名空间java.io类file的类成员方法: file定义及介绍
  • Java 要怎樣才能測得一個file的大小?
  • java命名空间java.awt类jobattributes.destinationtype的类成员方法: file定义及介绍
  • 一个超简单的问题,java中的file
  • java命名空间java.awt类event的类成员方法: save_file定义及介绍
  • JAVA中如何取得文件的LASTMODIFY时间?File中只有setLastModify方法
  • java命名空间java.awt类event的类成员方法: load_file定义及介绍
  • Linux 下 java 的File类的renameTo()方法 不能重命名文件
  • java命名空间javax.swing类jfilechooser的类成员方法: files_only定义及介绍
  • 在File.java中list()方法的疑惑
  • java命名空间javax.swing类jfilechooser的类成员方法: files_and_directories定义及介绍
  • java里怎么知道一个file的大小?
  • java命名空间javax.accessibility类accessiblerole的类成员方法: file_chooser定义及介绍
  • 请问JAVA中有没有类似C中__FILE__,__LINE__这样的变量。C高手才知道吧
  • java命名空间java.io类file的类成员方法: getabsolutefile定义及介绍
  • jbuilder7里如何在project pane里显示出某个project的所有的类的结构图,就如显示source java files的结构图一样
  • java命名空间javax.swing.plaf.synth类region的类成员方法: file_chooser定义及介绍
  • Java File Copy Library
  • java命名空间javax.swing类jfilechooser的类成员方法: file_view_changed_property定义及介绍
  • 怎么用java.io.File类中的list方法?
  • java命名空间javax.swing类jfilechooser的类成员方法: selected_files_changed_property定义及介绍
  • !!大送分98分! 请教JAVA中读一个文件的时候 我用file.setReadOnly()后怎么解开?
  • java命名空间java.rmi.server类operation的类成员方法: operation定义及介绍
  • java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Invalid operation for the current cursor position.(在线)
  • java命名空间java.lang类character.unicodeblock的类成员方法: mathematical_operators定义及介绍
  • java命名空间javax.xml.ws.handler接口messagecontext成员方法: wsdl_operation定义参考
  • java命名空间java.lang.management类managementfactory的类成员方法: operating_system_mxbean_name定义及介绍
  • java命名空间javax.print.attribute.standard类jobstatereason的类成员方法: job_canceled_by_operator定义及介绍
  • java命名空间java.rmi.server类operation的类成员方法: tostring定义及介绍
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java命名空间java.sql类types的类成员方法: java_object定义及介绍
  • 我想学JAVA ,是买THINK IN JAVA 还是JAVA2核心技术:卷1 好???
  • java命名空间java.awt.datatransfer类dataflavor的类成员方法: imageflavor定义及介绍
  • 请问Java高手,Java的优势在那里??,Java主要适合于开发哪类应用程序
  • java命名空间java.lang.management类managementfactory的类成员方法: getcompilationmxbean定义及介绍
  • 如何将java.util.Date转化为java.sql.Date?数据库中Date类型对应于java的哪个Date呢
  • java命名空间java.lang.management接口runtimemxbean的类成员方法: getlibrarypath定义及介绍
  • 谁有电子版的《Java编程思想第二版(Thinking in java second)》和《Java2编程详解(special edition java2)》?得到给分
  • java命名空间java.lang.management接口runtimemxbean的类成员方法: getstarttime定义及介绍
  • 本人想学java,请问java程序员的待遇如何,和java主要有几个比较强的方向
  • java命名空间java.awt.datatransfer类dataflavor的类成员方法: stringflavor定义及介绍
  • 我对JAVA一窍不通,可惜别人却给我一个Java的project,要我做一个安装程序,请问哪里有JAVA INSTALLER下载,而且我要不要安装java的sdk才能完成此项任务?
  • java命名空间java.security类keystore的类成员方法: getdefaulttype定义及介绍
  • 新年第一天,让我们讨论一下未来一年JAVA的发展趋势! 个人认为,JAVA将主要朝ERP和JAVA手机方面发展!
  • java命名空间java.lang.management接口runtimemxbean的类成员方法: getclasspath定义及介绍
  • 我想学Java,但不知道Java的实用的开发工具有那些,Java主要用在哪些方面,EJB到底是什么东西??
  • java命名空间java.awt.datatransfer类dataflavor的类成员方法: javaserializedobjectmimetype定义及介绍
  • redhat7.3下,java程序打印中文直接用java命令执行正常,用crontab执行java命令为乱码
  • java命名空间java.awt.datatransfer类dataflavor的类成员方法: javafilelistflavor定义及介绍
  • 各位学java的朋友,学java的未来是什么,你们学java都用来开发什么项目啊!来者给分!!
  • java命名空间java.lang.management接口runtimemxbean的类成员方法: getvmname定义及介绍
  • 请问java程序中的import为什么有的用java.….*,而有的又用java.….…,有什么区别吗?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3