檔案的複製和剪下功能,簡單實現,複製剪下功能實現

來源:互聯網
上載者:User

檔案的複製和剪下功能,簡單實現,複製剪下功能實現

個人寫的檔案的複製方法和剪下方法,是一個初出茅廬的小猿猿,有什麼缺點,請各位大神指出
/** * * @param tarPath 把檔案複製到那個路徑 * @param sourcePath 複製檔案的路徑 * @throws IOException */ // 檔案的複製功能 public void copyFile(String tarPath, String sourcePath) throws IOException { File tarFile = new File(tarPath); if(!tarFile.exists()){ tarFile.createNewFile(); } File sourceFile = new File(sourcePath); try { // 建立一個檔案輸入資料流 FileInputStream fis = new FileInputStream(sourceFile); // 輸入資料流緩衝區 BufferedInputStream bis = new BufferedInputStream(fis); byte[] buffer = new byte[bis.available()]; bis.read(buffer); bis.close(); fis.close(); // 建立一個檔案輸出資料流 FileOutputStream fos = new FileOutputStream(tarFile); BufferedOutputStream bos = new BufferedOutputStream(fos); // 將資料寫入輸出資料流 bos.write(buffer); // 此處需要重新整理 bos.flush(); bos.close(); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } //刪除檔案(也可以當做複製完檔案以後 ,剪下功能) /** * * @param sourcePath 要刪除的檔案路徑 */ public void deleteFile(String sourcePath){ File tarFile = new File(sourcePath); if(tarFile.isFile()) tarFile.delete(); }

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.