FileOperate.java
上传用户:u_thks
上传日期:2022-07-31
资源大小:1910k
文件大小:12k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

Java

  1. /*
  2.  * Made In GamVan.com
  3.  * Created on 2005年3月18日, 下午8:37
  4.  */
  5. package com.gamvan.tools;
  6. import java.io.BufferedReader;
  7. import java.io.File;
  8. import java.io.FileInputStream;
  9. import java.io.FileOutputStream;
  10. import java.io.FileWriter;
  11. import java.io.IOException;
  12. import java.io.InputStream;
  13. import java.io.InputStreamReader;
  14. import java.io.PrintWriter;
  15. import java.util.StringTokenizer;
  16. public class FileOperate {
  17.     private String message;
  18.     public FileOperate(){
  19.         
  20.     }
  21.     
  22.     
  23.     /**
  24.      * 根据含URL的文件地址提取文件名,含扩展名。
  25.      * @param fileNameAndUrl
  26.      * @return
  27.      */
  28.     public static String getFileName(String fileNameAndUrl){
  29.         if(fileNameAndUrl==null) return "";
  30.         String str = "";
  31.         int fileNameStart = fileNameAndUrl.lastIndexOf(File.separator)+1;
  32.         if(fileNameStart==0) return "";
  33.         str = fileNameAndUrl.substring(fileNameStart, fileNameAndUrl.length());
  34.         str = str.trim();
  35.         return str;
  36.     }
  37.     
  38.     
  39.     /**
  40.      * 根据含路径的文件名提取文件扩展名
  41.      * @param fileNameAndPath
  42.      * @return
  43.      */
  44.     public static String getFileExt(String fileNameAndPath){
  45.         if(fileNameAndPath==null) return "";
  46.         //fileNameAndPath = TypeChange.nullOfString(fileNameAndPath);
  47.         String fileext = "";
  48.         int extStart = fileNameAndPath.lastIndexOf(".")+1;
  49.         if(extStart==0){
  50.             return "";  
  51.         }
  52.         fileext = fileNameAndPath.substring(extStart,fileNameAndPath.length());
  53.         return fileext;
  54.     }
  55.     /**
  56.      * 读取文本文件内容
  57.      * @param filePathAndName 带有完整绝对路径的文件名
  58.      * @param encoding 文本文件打开的编码方式
  59.      * @return 返回文本文件的内容
  60.      */
  61.     public String readTxt(String filePathAndName,String encoding){
  62.      encoding = encoding.trim();
  63.      StringBuffer str = new StringBuffer("");
  64.      String st = "";
  65.      try{
  66.      FileInputStream fs = new FileInputStream(filePathAndName);
  67.      InputStreamReader isr;
  68.      if(encoding.equals("")){
  69.      isr = new InputStreamReader(fs);
  70.      }else{
  71.      isr = new InputStreamReader(fs,encoding);
  72.      }
  73.      BufferedReader br = new BufferedReader(isr);
  74.      try{
  75.      String data = "";
  76.      while((data = br.readLine())!=null){
  77.      str.append(data+"n"); 
  78.      }
  79.      }catch(Exception e){
  80.      str.append(e.toString());
  81.      }finally{
  82.                 br.close();
  83.          isr.close();
  84.                 fs.close();
  85.             }
  86.      st = str.toString();
  87.      }catch(IOException es){
  88.      st = "";
  89.      }
  90.      return st;    
  91.     }
  92.     /**
  93.      * 新建目录
  94.      * @param folderPath 目录
  95.      * @return 返回目录创建后的路径
  96.      */
  97.     public String createFolder(String folderPath) {
  98.         String txt = folderPath;
  99.         try {
  100.             java.io.File myFilePath = new java.io.File(txt);
  101.             txt = folderPath;
  102.             if (!myFilePath.exists()) {
  103.                 myFilePath.mkdir();
  104.             }
  105.         }
  106.         catch (Exception e) {
  107.             message = "创建目录操作出错";
  108.         }
  109.         return txt;
  110.     }
  111.     
  112.     /**
  113.      * 多级目录创建
  114.      * @param folderPath 准备要在本级目录下创建新目录的目录路径 例如 c:myf
  115.      * @param paths 无限级目录参数,各级目录以单数线区分 例如 a|b|c
  116.      * @return 返回创建文件后的路径 例如 c:myfabc
  117.      */
  118.     public String createFolders(String folderPath, String paths){
  119.         String txts = folderPath;
  120.         try{
  121.             String txt;
  122.             txts = folderPath;
  123.             StringTokenizer st = new StringTokenizer(paths,"|");
  124.             for(int i=0; st.hasMoreTokens(); i++){
  125.                     txt = st.nextToken().trim();
  126.                     if(i!=0&&txts.lastIndexOf(File.separator)!=-1){ 
  127.                         txts = createFolder(txts + File.separator + txt);   
  128.                     }else{
  129.                      txts = createFolder(txts + txt);
  130.                     }
  131.             }
  132.             txts+=File.separator;
  133.        }catch(Exception e){
  134.            message = "创建目录操作出错!";
  135.        }
  136.         return txts;
  137.     }
  138.     
  139.     /**
  140.      * 新建文件
  141.      * @param filePathAndName 文本文件完整绝对路径及文件名
  142.      * @param fileContent 文本文件内容
  143.      * @return
  144.      */
  145.     public void createFile(String filePathAndName, String fileContent) {
  146.     
  147.         try {
  148.             String filePath = filePathAndName;
  149.             filePath = filePath.toString();
  150.             File myFilePath = new File(filePath);
  151.             if (!myFilePath.exists()) {
  152.                 myFilePath.createNewFile();
  153.             }
  154.             FileWriter resultFile = new FileWriter(myFilePath);
  155.             PrintWriter myFile = new PrintWriter(resultFile);
  156.             String strContent = fileContent;
  157.             myFile.println(strContent);
  158.             
  159.             myFile.close();
  160.             resultFile.close();
  161.         }
  162.         catch (Exception e) {
  163.             message = "创建文件操作出错";
  164.         }
  165.     }
  166.     /**
  167.      * 有编码方式的文件创建
  168.      * @param filePathAndName 文本文件完整绝对路径及文件名
  169.      * @param fileContent 文本文件内容
  170.      * @param encoding 编码方式 例如 GBK 或者 UTF-8
  171.      * @return
  172.      */
  173.     public void createFile(String filePathAndName, String fileContent, String encoding) {
  174.     
  175.         try {
  176.             String filePath = filePathAndName;
  177.             filePath = filePath.toString();
  178.             File myFilePath = new File(filePath);
  179.             if (!myFilePath.exists()) {
  180.                 myFilePath.createNewFile();
  181.             }
  182.             PrintWriter myFile = new PrintWriter(myFilePath,encoding);
  183.             String strContent = fileContent;
  184.             myFile.println(strContent);
  185.             myFile.close();
  186.         }
  187.         catch (Exception e) {
  188.             message = "创建文件操作出错";
  189.         }
  190.     } 
  191.     /**
  192.      * 删除文件
  193.      * @param filePathAndName 文本文件完整绝对路径及文件名
  194.      * @return Boolean 成功删除返回true遭遇异常返回false
  195.      */
  196.     public boolean delFile(String filePathAndName) {
  197.      boolean bea = false;
  198.         try {
  199.             String filePath = filePathAndName;
  200.             File myDelFile = new File(filePath);
  201.             if(myDelFile.exists()){
  202.              myDelFile.delete();
  203.              bea = true;
  204.             }else{
  205.              bea = false;
  206.              message = (filePathAndName+"<br>删除文件操作出错");
  207.             }
  208.         }
  209.         catch (Exception e) {
  210.             message = e.toString();
  211.         }
  212.         return bea;
  213.     }
  214.     
  215.     /**
  216.      * 删除文件夹
  217.      * @param folderPath 文件夹完整绝对路径
  218.      * @return
  219.      */
  220.     public void delFolder(String folderPath) {
  221.         try {
  222.             delAllFile(folderPath); //删除完里面所有内容
  223.             String filePath = folderPath;
  224.             filePath = filePath.toString();
  225.             java.io.File myFilePath = new java.io.File(filePath);
  226.             myFilePath.delete(); //删除空文件夹
  227.         }
  228.         catch (Exception e) {
  229.             message = ("删除文件夹操作出错");
  230.         }
  231.     }
  232.     
  233.     
  234.     /**
  235.      * 删除指定文件夹下所有文件
  236.      * @param path 文件夹完整绝对路径
  237.      * @return
  238.      * @return
  239.      */
  240.     public boolean delAllFile(String path) {
  241.      boolean bea = false;
  242.         File file = new File(path);
  243.         if (!file.exists()) {
  244.             return bea;
  245.         }
  246.         if (!file.isDirectory()) {
  247.             return bea;
  248.         }
  249.         String[] tempList = file.list();
  250.         File temp = null;
  251.         for (int i = 0; i < tempList.length; i++) {
  252.             if (path.endsWith(File.separator)) {
  253.                 temp = new File(path + tempList[i]);
  254.             }else{
  255.                 temp = new File(path + File.separator + tempList[i]);
  256.             }
  257.             if (temp.isFile()) {
  258.                 temp.delete();
  259.             }
  260.             if (temp.isDirectory()) {
  261.                 delAllFile(path + File.separator + tempList[i]);//先删除文件夹里面的文件
  262.                 delFolder(path + File.separator + tempList[i]);//再删除空文件夹
  263.                 bea = true;
  264.             }
  265.         }
  266.         return bea;
  267.     }
  268.     /**
  269.      * 复制单个文件
  270.      * @param oldPathFile 准备复制的文件源
  271.      * @param newPathFile 拷贝到新绝对路径带文件名
  272.      * @return
  273.      */
  274.     public void copyFile(String oldPathFile, String newPathFile) {
  275.         try {
  276.             int bytesum = 0;
  277.             int byteread = 0;
  278.             File oldfile = new File(oldPathFile);
  279.             if (oldfile.exists()) { //文件存在时
  280.                 InputStream inStream = new FileInputStream(oldPathFile); //读入原文件
  281.                 FileOutputStream fs = new FileOutputStream(newPathFile);
  282.                 byte[] buffer = new byte[1444];
  283.                 while((byteread = inStream.read(buffer)) != -1){
  284.                     bytesum += byteread; //字节数 文件大小
  285.                     System.out.println(bytesum);
  286.                     fs.write(buffer, 0, byteread);
  287.                 }
  288.                 inStream.close();
  289.                 fs.close();
  290.             }   
  291.         }catch (Exception e) {
  292.             message = ("复制单个文件操作出错");
  293.         }
  294.     }
  295.     
  296.     /**
  297.      * 复制整个文件夹的内容
  298.      * @param oldPath 准备拷贝的目录
  299.      * @param newPath 指定绝对路径的新目录
  300.      * @return
  301.      */
  302.     public void copyFolder(String oldPath, String newPath) {
  303.         try {
  304.             new File(newPath).mkdirs(); //如果文件夹不存在 则建立新文件夹
  305.             File a=new File(oldPath);
  306.             String[] file=a.list();
  307.             File temp=null;
  308.             for (int i = 0; i < file.length; i++) {
  309.                 if(oldPath.endsWith(File.separator)){
  310.                     temp=new File(oldPath+file[i]);
  311.                 }else{
  312.                     temp=new File(oldPath+File.separator+file[i]);
  313.                 }
  314.                 if(temp.isFile()){
  315.                     FileInputStream input = new FileInputStream(temp);
  316.                     FileOutputStream output = new FileOutputStream(newPath + File.separator +
  317.                     (temp.getName()).toString());
  318.                     byte[] b = new byte[1024 * 5];
  319.                     int len;
  320.                     while ((len = input.read(b)) != -1) {
  321.                         output.write(b, 0, len);
  322.                     }
  323.                     output.flush();
  324.                     output.close();
  325.                     input.close();
  326.                 }
  327.                 if(temp.isDirectory()){//如果是子文件夹
  328.                     copyFolder(oldPath+File.separator+file[i],newPath+File.separator+file[i]);
  329.                 }
  330.             }
  331.         }catch (Exception e) {
  332.             message = "复制整个文件夹内容操作出错";
  333.         }
  334.     }
  335.     /**
  336.      * 移动文件
  337.      * @param oldPath
  338.      * @param newPath
  339.      * @return
  340.      */
  341.     public void moveFile(String oldPath, String newPath) {
  342.         copyFile(oldPath, newPath);
  343.         delFile(oldPath);
  344.     }
  345.     
  346.     /**
  347.      * 移动目录
  348.      * @param oldPath
  349.      * @param newPath
  350.      * @return
  351.      */
  352.     public void moveFolder(String oldPath, String newPath) {
  353.         copyFolder(oldPath, newPath);
  354.         delFolder(oldPath);
  355.     }
  356.     public String getMessage(){
  357.         return this.message;
  358.     }
  359. }
  360.