中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用Java怎么拷貝文件夾

發布時間:2021-03-09 17:30:23 來源:億速云 閱讀:166 作者:Leah 欄目:編程語言

這篇文章給大家介紹使用Java怎么拷貝文件夾,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

1.文件夾的拷貝

public void copy(File src, File dest) throws IOException {
  if (dest.isFile()) {
    throw new RuntimeException(dest + "不是文件夾");
  }
  File file = new File(dest.getPath() + "/" + src.getName());
  if (src.isFile()) {
    FileInputStream fis = new FileInputStream(src);
    BufferedInputStream bis = new BufferedInputStream(fis);
    FileOutputStream fos = new FileOutputStream(file);
    BufferedOutputStream bos = new BufferedOutputStream(fos);
    byte[] bytes = new byte[1024];
    int len;
    while ((len = bis.read(bytes)) != -1) {
      bos.write(bytes, 0, len);
    }

    bis.close();
    fis.close();
    bos.close();
    fos.close();

  } else if(src.isDirectory()){
    file.mkdir();
    File[] files = src.listFiles();
    for (File file2 : files) {
      copy(file2, dest);
    }
  }
}

2. 刪除整個文件夾:

public void delete(File dir) {
  if (dir.isDirectory()) {
    File[] files = dir.listFiles();
    for (File file : files) {
      delete(file);
    }
  }
  dir.delete();
}

關于使用Java怎么拷貝文件夾就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

侯马市| 尚义县| 河南省| 武强县| 宁津县| 会理县| 股票| 临江市| 马公市| 介休市| 灵寿县| 大同县| 宁晋县| 堆龙德庆县| 五寨县| 富源县| 高青县| 邯郸县| 绩溪县| 元阳县| 靖宇县| 应城市| 桃园县| 安泽县| 金坛市| 吉水县| 南溪县| 格尔木市| 巧家县| 浑源县| 佳木斯市| 许昌县| 平阴县| 新巴尔虎右旗| 启东市| 呼伦贝尔市| 五河县| 钟山县| 河津市| 黑龙江省| 庆元县|