雪山飞狐

雪山飞狐

BlogJava 首页 新随笔 联系 聚合 管理
  1 Posts :: 2 Stories :: 0 Comments :: 0 Trackbacks
  1. /** 
  2.      * 新建目录 
  3.      * @param folderPath 目录 
  4.      * @return 返回目录创建后的路径 
  5.      */  
  6.     public String createFolder(String folderPath){  
  7.         String txt = folderPath;  
  8.         File myFilePath = new File(txt);  
  9.         txt = folderPath;  
  10.         if(!myFilePath.exists()){  
  11.             myFilePath.mkdir();  
  12.         }  
  13.         return txt;       
  14.     } 


  1. /** 
  2.      * 读取文本文件内容 
  3.      * @param filePathAndName 带有完整绝对路径的文件名 
  4.      * @param encoding 文本文件打开的编码方式 
  5.      * @return 返回文本文件的内容 
  6.      */  
  7.     public String readTxt(String filePathAndName,String encoding){  
  8.         encoding = encoding.trim();  
  9.         StringBuffer str = new StringBuffer("");  
  10.         String st = "";  
  11.         try {  
  12.             FileInputStream fs = new FileInputStream(filePathAndName);  
  13.             InputStreamReader isr ;  
  14.             if (encoding.equals("")){  
  15.                 isr = new InputStreamReader(fs);  
  16.             }else{  
  17.                 isr = new InputStreamReader(fs,encoding);  
  18.             }  
  19.             BufferedReader br = new BufferedReader(isr);  
  20.             String data = "";  
  21.             while((data = br.readLine())!=null){  
  22.                 str.append(data+" ");  
  23.             }  
  24.             st = str.toString();  
  25.         } catch (FileNotFoundException e) {  
  26.             e.printStackTrace();  
  27.         } catch (UnsupportedEncodingException e) {  
  28.             e.printStackTrace();  
  29.         } catch (IOException e) {  
  30.             e.printStackTrace();  
  31.         }  
  32.         return st;  
  33.           
  34.     } 

  1. /** 
  2.      * 删除文件夹 
  3.      * @param folderPath 文件夹完整绝对路径 
  4.      * @return 
  5.      */  
  6.     public void delFolder(String folderPath) {  
  7.         try {  
  8.             delAllFile(folderPath); //删除完里面所有内容  
  9.             String filePath = folderPath;  
  10.             filePath = filePath.toString();  
  11.             java.io.File myFilePath = new java.io.File(filePath);  
  12.             myFilePath.delete(); //删除空文件夹  
  13.         }  
  14.         catch (Exception e) {  
  15.             message = ("删除文件夹操作出错");  
  16.         }  
  17.     } 

多级目录创建
  1. /** 
  2.      * 多 级目录创建 
  3.      * @param folderPath 准 备要在本级目录下创建新目录的目录路径 例如 c:myf 
  4.      * @param paths 无限级目录参数,各级目录以单数线区分 例如 a|b|c 
  5.      * @return 返回创建文件后的路径 例如 c:myfac 
  6.      */  
  7.     public String createFolders(String folderPath,String paths){  
  8.         String txts = folderPath;  
  9.         String txt ;   
  10.         //如果需要无限极创建目录,以"|"分开 例"aa|bb|cc|"  
  11.         StringTokenizer st = new StringTokenizer(paths,"|");  
  12.         for(int i=0;st.hasMoreTokens();i++){  
  13.             txt = st.nextToken().trim();  
  14.             if(txts.lastIndexOf("/")!= -1){  
  15.                 txts = createFolder(txts+txt);  
  16.             }else{  
  17.                 txts = createFolder(txts+txt+"/");  
  18.             }  
  19.         }  
  20.         return txts;  
  21.     } 

Java代码
  1. /** 
  2.      * 新 建文件 
  3.      * @param filePathAndName 文 本文件完整绝对路径及文件名 
  4.      * @param fileContent 文 本文件内容 
  5.      * @return 
  6.      */  
  7.     public void createFile(String filePathAndName,String fileContent){  
  8.         try{  
  9.         String filePath = filePathAndName;  
  10.         filePath = filePath.toString();  
  11.         File myFilePath = new File(filePath);  
  12.         if(!myFilePath.exists()){  
  13.             myFilePath.createNewFile();  
  14.         }  
  15.         FileWriter resultFile = new FileWriter(myFilePath);  
  16.         PrintWriter myFile = new PrintWriter(resultFile);  
  17.         String strContent = fileContent;  
  18.         myFile.println(strContent);  
  19.         myFile.close();  
  20.         resultFile.close();  
  21.         }catch (IOException e) {  
  22.   
  23.         }  
  24.     } 


  1. /** 
  2.      * 有编码方式的文件创建 
  3.      * @param filePathAndName 文本文件完整绝对路径及文件名 
  4.      * @param fileContent 文本文件内容 
  5.      * @param encoding 编码方式 例如 GBK 或者 UTF-8 
  6.      * @return 
  7.      */  
  8.     public void createFile(String filePathAndName, String fileContent, String encoding) {  
  9.        
  10.         try {  
  11.             String filePath = filePathAndName;  
  12.             filePath = filePath.toString();  
  13.             File myFilePath = new File(filePath);  
  14.             if (!myFilePath.exists()) {  
  15.                 myFilePath.createNewFile();  
  16.             }  
  17.             PrintWriter myFile = new PrintWriter(myFilePath,encoding);  
  18.             String strContent = fileContent;  
  19.             myFile.println(strContent);  
  20.             myFile.close();  
  21.         }  
  22.         catch (Exception e) {  
  23.             message = "创建文件操作出错";  
  24.         }  
  25.     }  

  1. /** 
  2.      * 删除文件 
  3.      * @param filePathAndName 文本文件完整绝对路径及文件名 
  4.      * @return Boolean 成功删除返回true遭遇异常返回false 
  5.      */  
  6.     public boolean delFile(String filePathAndName) {  
  7.      boolean bea = false;  
  8.         try {  
  9.             String filePath = filePathAndName;  
  10.             File myDelFile = new File(filePath);  
  11.             if(myDelFile.exists()){  
  12.              myDelFile.delete();  
  13.              bea = true;  
  14.             }else{  
  15.              bea = false;  
  16.              message = (filePathAndName+"  
  17. 删 除文件操作出错");  
  18.             }  
  19.         }  
  20.         catch (Exception e) {  
  21.             message = e.toString();  
  22.         }  
  23.         return bea;  
  24.     } 


  1. /** 
  2.      * 删除文件夹 
  3.      * @param folderPath 文件夹完整绝对路径 
  4.      * @return 
  5.      */  
  6.     public void delFolder(String folderPath) {  
  7.         try {  
  8.             delAllFile(folderPath); //删除完里面所有内容  
  9.             String filePath = folderPath;  
  10.             filePath = filePath.toString();  
  11.             java.io.File myFilePath = new java.io.File(filePath);  
  12.             myFilePath.delete(); //删除空文件夹  
  13.         }  
  14.         catch (Exception e) {  
  15.             message = ("删除文件夹操作出错");  
  16.         }  
  17.     } 

  1. /** 
  2.      * 删除指定文件夹下所有文件 
  3.      * @param path 文件夹完整绝对路径 
  4.      * @return 
  5.      * @return 
  6.      */  
  7.     public boolean delAllFile(String path) {  
  8.      boolean bea = false;  
  9.         File file = new File(path);  
  10.         if (!file.exists()) {  
  11.             return bea;  
  12.         }  
  13.         if (!file.isDirectory()) {  
  14.             return bea;  
  15.         }  
  16.         String[] tempList = file.list();  
  17.         File temp = null;  
  18.         for (int i = 0; i < tempList.length; i++) {  
  19.             if (path.endsWith(File.separator)) {  
  20.                 temp = new File(path + tempList[i]);  
  21.             }else{  
  22.                 temp = new File(path + File.separator + tempList[i]);  
  23.             }  
  24.             if (temp.isFile()) {  
  25.                 temp.delete();  
  26.             }  
  27.             if (temp.isDirectory()) {  
  28.                 delAllFile(path+"/"+ tempList[i]);//先删除文件夹里面的文件  
  29.                 delFolder(path+"/"+ tempList[i]);//再删除空文件夹  
  30.                 bea = true;  
  31.             }  
  32.         }  
  33.         return bea;  
  34.     } 


  1. /** 
  2.      * 复制单个文件 
  3.      * @param oldPathFile 准备复制的文件源 
  4.      * @param newPathFile 拷贝到新绝对路径带文件名 
  5.      * @return 
  6.      */  
  7.     public void copyFile(String oldPathFile, String newPathFile) {  
  8.         try {  
  9.             int bytesum = 0;  
  10.             int byteread = 0;  
  11.             File oldfile = new File(oldPathFile);  
  12.             if (oldfile.exists()) { //文件存在时  
  13.                 InputStream inStream = new FileInputStream(oldPathFile); //读入原文件  
  14.                 FileOutputStream fs = new FileOutputStream(newPathFile);  
  15.                 byte[] buffer = new byte[1444];  
  16.                 while((byteread = inStream.read(buffer)) != -1){  
  17.                     bytesum += byteread; //字节数 文件大小  
  18.                     System.out.println(bytesum);  
  19.                     fs.write(buffer, 0, byteread);  
  20.                 }  
  21.                 inStream.close();  
  22.             }  
  23.         }catch (Exception e) {  
  24.             message = ("复制单个文件操作出错");  
  25.         }  
  26.     } 


  1. /** 
  2.      * 复制整个文件夹的内容 
  3.      * @param oldPath 准备拷贝的目录 
  4.      * @param newPath 指定绝对路径的新目录 
  5.      * @return 
  6.      */  
  7.     public void copyFolder(String oldPath, String newPath) {  
  8.         try {  
  9.             new File(newPath).mkdirs(); //如果文件夹不存在 则建立新文件夹  
  10.             File a=new File(oldPath);  
  11.             String[] file=a.list();  
  12.             File temp=null;  
  13.             for (int i = 0; i < file.length; i++) {  
  14.                 if(oldPath.endsWith(File.separator)){  
  15.                     temp=new File(oldPath+file[i]);  
  16.                 }else{  
  17.                     temp=new File(oldPath+File.separator+file[i]);  
  18.                 }  
  19.                 if(temp.isFile()){  
  20.                     FileInputStream input = new FileInputStream(temp);  
  21.                     FileOutputStream output = new FileOutputStream(newPath + "/" +  
  22.                     (temp.getName()).toString());  
  23.                     byte[] b = new byte[1024 * 5];  
  24.                     int len;  
  25.                     while ((len = input.read(b)) != -1) {  
  26.                         output.write(b, 0, len);  
  27.                     }  
  28.                     output.flush();  
  29.                     output.close();  
  30.                     input.close();  
  31.                 }  
  32.                 if(temp.isDirectory()){//如果是子文件夹  
  33.                     copyFolder(oldPath+"/"+file[i],newPath+"/"+file[i]);  
  34.                 }  
  35.             }  
  36.         }catch (Exception e) {  
  37.             message = "复制整个文件夹内容操作出错";  
  38.         }  
  39.     }



  1. /** 
  2.      * 移动文件 
  3.      * @param oldPath 
  4.      * @param newPath 
  5.      * @return 
  6.      */  
  7.     public void moveFile(String oldPath, String newPath) {  
  8.         copyFile(oldPath, newPath);  
  9.         delFile(oldPath);  
  10.     } 


  1. /** 
  2.      * 移动目录 
  3.      * @param oldPath 
  4.      * @param newPath 
  5.      * @return 
  6.      */  
  7.     public void moveFolder(String oldPath, String newPath) {  
  8.         copyFolder(oldPath, newPath);  
  9.         delFolder(oldPath);  
  10.     } 









posted on 2010-04-20 19:47 犀利哥 阅读(97) 评论(0)  编辑  收藏

只有注册用户登录后才能发表评论。


网站导航: