Android 台灣中文網

標題: java文件相關操作 [打印本頁]

作者: 暗桌之光    時間: 2011-7-31 17:14
標題: java文件相關操作
判斷Android文件名是否安全技巧
  1. public static boolean IsFileNameOK(String filepath) {
  2.         return Pattern.compile("[\\w%+,./=_-]+").matcher(filepath).matches();
  3.     }
  4.    public static boolean IsFileNameOK(File file) {
  5.         return Pattern.compile("[\\w%+,./=_-]+").matcher(file.getPath()).matches();
  6.     }
複製代碼
一.獲得控制台用戶輸入的訊息
  1. /** *//**獲得控制台用戶輸入的訊息
  2. * @return
  3. * @throws IOException
  4. */
  5. public String getInputMessage() throws IOException...{
  6. System.out.println("請輸入您的命令︰");
  7. byte buffer[]=new byte[1024];
  8. int count=System.in.read(buffer);
  9. char[] ch=new char[count-2];//最後兩位為結束符,刪去不要
  10. for(int i=0;i<count-2;i++)
  11. ch[i]=(char)buffer[i];
  12. String str=new String(ch);
  13. return str;
  14. }
複製代碼
可以返回用戶輸入的訊息,不足之處在於不支持中文輸入,有待進一步改進。
二.複製文件

1.以文件流的方式複製文件
  1. /** *//**以文件流的方式複製文件
  2. * @param src 文件源目錄
  3. * @param dest 文件目的目錄
  4. * @throws IOException
  5. */
  6. public void copyFile(String src,String dest) throws IOException...{
  7. FileInputStream in=new FileInputStream(src);
  8. File file=new File(dest);
  9. if(!file.exists())
  10. file.createNewFile();
  11. FileOutputStream out=new FileOutputStream(file);
  12. int c;
  13. byte buffer[]=new byte[1024];
  14. while((c=in.read(buffer))!=-1)...{
  15. for(int i=0;i<c;i++)
  16. out.write(buffer[i]);
  17. }
  18. in.close();
  19. out.close();
  20. }
複製代碼
該方法經過測試,支持中文處理,並且可以複製多種類型,比如txt,xml,jpg,doc等多種格式

三.寫文件

1.利用PrintStream寫文件
  1. /** *//**
  2. * 文件輸出示例
  3. */
  4. public void PrintStreamDemo()...{
  5. try ...{
  6. FileOutputStream out=new FileOutputStream("D:/test.txt");
  7. PrintStream p=new PrintStream(out);
  8. for(int i=0;i<10;i++)
  9. p.println("This is "+i+" line");
  10. } catch (FileNotFoundException e) ...{
  11. e.printStackTrace();
  12. }
  13. }
複製代碼
2.利用StringBuffer寫文件
  1. public void StringBufferDemo() throws IOException......{
  2. File file=new File("/root/sms.log");
  3. if(!file.exists())
  4. file.createNewFile();
  5. FileOutputStream out=new FileOutputStream(file,true);
  6. for(int i=0;i<10000;i++)......{
  7. StringBuffer sb=new StringBuffer();
  8. sb.append("這是第"+i+"行:前面介紹的各種方法都不關用,為什麼總是奇怪的問題 ");
  9. out.write(sb.toString().getBytes("utf-8"));
  10. }
  11. out.close();
  12. }
複製代碼
該方法可以設定使用何種編碼,有效解決中文問題。

四.文件重命名
  1. /** *//**文件重命名
  2. * @param path 文件目錄
  3. * @param oldname 原來的文件名
  4. * @param newname 新文件名
  5. */
  6. public void renameFile(String path,String oldname,String newname)...{
  7. if(!oldname.equals(newname))...{//新的文件名和以前文件名不同時,才有必要進行重命名
  8. File oldfile=new File(path+"/"+oldname);
  9. File newfile=new File(path+"/"+newname);
  10. if(newfile.exists())//若在該目錄下已經有一個文件和新文件名相同,則不允許重命名
  11. System.out.println(newname+"已經存在!");
  12. else...{
  13. oldfile.renameTo(newfile);
  14. }
  15. }
  16. }
複製代碼
五.轉移文件目錄

轉移文件目錄不等同於複製文件,複製文件是複製後兩個目錄都存在該文件,而轉移文件目錄則是轉移後,只有新目錄中存在該文件。
  1. /** *//**轉移文件目錄
  2. * @param filename 文件名
  3. * @param oldpath 舊目錄
  4. * @param newpath 新目錄
  5. * @param cover 若新目錄下存在和轉移文件具有相同文件名的文件時,是否覆蓋新目錄下文件,cover=true將會覆蓋原文件,否則不操作
  6. */
  7. public void changeDirectory(String filename,String oldpath,String newpath,boolean cover)...{
  8. if(!oldpath.equals(newpath))...{
  9. File oldfile=new File(oldpath+"/"+filename);
  10. File newfile=new File(newpath+"/"+filename);
  11. if(newfile.exists())...{//若在待轉移目錄下,已經存在待轉移文件
  12. if(cover)//覆蓋
  13. oldfile.renameTo(newfile);
  14. else
  15. System.out.println("在新目錄下已經存在:"+filename);
  16. }
  17. else...{
  18. oldfile.renameTo(newfile);
  19. }
  20. }
  21. }
複製代碼
六.讀文件

1.利用FileInputStream讀取文件
  1. /** *//**讀文件
  2. * @param path
  3. * @return
  4. * @throws IOException
  5. */
  6. public String FileInputStreamDemo(String path) throws IOException...{
  7. File file=new File(path);
  8. if(!file.exists()||file.isDirectory())
  9. throw new FileNotFoundException();
  10. FileInputStream fis=new FileInputStream(file);
  11. byte[] buf = new byte[1024];
  12. StringBuffer sb=new StringBuffer();
  13. while((fis.read(buf))!=-1)...{
  14. sb.append(new String(buf));
  15. buf=new byte[1024];//重新生成,避免和上次讀取的數據重複
  16. }
  17. return sb.toString();
  18. }
複製代碼
2.利用BufferedReader讀取

在IO操作,利用BufferedReader和BufferedWriter效率會更高一點
  1. /** *//**讀文件
  2. * @param path
  3. * @return
  4. * @throws IOException
  5. */
  6. public String BufferedReaderDemo(String path) throws IOException...{
  7. File file=new File(path);
  8. if(!file.exists()||file.isDirectory())
  9. throw new FileNotFoundException();
  10. BufferedReader br=new BufferedReader(new FileReader(file));
  11. String temp=null;
  12. StringBuffer sb=new StringBuffer();
  13. temp=br.readLine();
  14. while(temp!=null)...{
  15. sb.append(temp+" ");
  16. temp=br.readLine();
  17. }
  18. return sb.toString();
  19. }
複製代碼
3.利用dom4j讀取xml文件
  1. /** *//**從目錄中讀取xml文件
  2. * @param path 文件目錄
  3. * @return
  4. * @throws DocumentException
  5. * @throws IOException
  6. */
  7. public Document readXml(String path) throws DocumentException, IOException...{
  8. File file=new File(path);
  9. BufferedReader bufferedreader = new BufferedReader(new FileReader(file));
  10. SAXReader saxreader = new SAXReader();
  11. Document document = (Document)saxreader.read(bufferedreader);
  12. bufferedreader.close();
  13. return document;
  14. }
複製代碼
七.創建文件(文件夾)


1.創建文件夾
  1. /** *//**創建文件夾
  2. * @param path 目錄
  3. */
  4. public void createDir(String path)...{
  5. File dir=new File(path);
  6. if(!dir.exists())
  7. dir.mkdir();
  8. }
複製代碼
2.創建新文件
  1. /** *//**創建新文件
  2. * @param path 目錄
  3. * @param filename 文件名
  4. * @throws IOException
  5. */
  6. public void createFile(String path,String filename) throws IOException...{
  7. File file=new File(path+"/"+filename);
  8. if(!file.exists())
  9. file.createNewFile();
  10. }
複製代碼
八.刪除文件(目錄)


1.刪除文件
  1. /** *//**刪除文件
  2. * @param path 目錄
  3. * @param filename 文件名
  4. */
  5. public void delFile(String path,String filename)...{
  6. File file=new File(path+"/"+filename);
  7. if(file.exists()&&file.isFile())
  8. file.delete();
  9. }
複製代碼
2.刪除目錄
要利用File類的delete()方法刪除目錄時,必須保證該目錄下沒有文件或者子目錄,否則刪除失敗,因此在實際應用中,我們要刪除目錄,必須利用遞歸刪除該目錄下的所有子目錄和文件,然後再刪除該目錄。
  1. /** *//**遞歸刪除文件夾
  2. * @param path
  3. */
  4. public void delDir(String path)...{
  5. File dir=new File(path);
  6. if(dir.exists())...{
  7. File[] tmp=dir.listFiles();
  8. for(int i=0;i<tmp.length;i++)...{
  9. if(tmp[i].isDirectory())...{
  10. delDir(path+"/"+tmp[i].getName());
  11. }
  12. else...{
  13. tmp[i].delete();
  14. }
  15. }
  16. dir.delete();
  17. }
  18. }
複製代碼

作者: sigmalin    時間: 2011-10-2 15:20
果然是專業的
作者: ploglin    時間: 2011-10-3 09:03
的確解說的相當好,受教了。




歡迎光臨 Android 台灣中文網 (https://apk.tw/) Powered by Discuz! X3.1