個人寫的文件的復制方法和剪切方法,是一個初出茅廬的小猿猿,有什麼缺點,請各位大神指出
/** * * @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(); }