91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java怎么復制文件到指定目錄

小億
196
2024-01-03 12:37:06
欄目: 編程語言

要在Java中復制文件到指定目錄,可以使用Java IO庫中的File類和InputStream/OutputStream類。

以下是一個簡單的示例代碼:

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;

public class FileCopy {
    public static void main(String[] args) {
        String sourceFilePath = "path/to/source/file";
        String destinationFilePath = "path/to/destination/file";

        File sourceFile = new File(sourceFilePath);
        File destinationFile = new File(destinationFilePath);

        try {
            copyFile(sourceFile, destinationFile);
            System.out.println("文件復制成功!");
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public static void copyFile(File source, File destination) throws IOException {
        FileInputStream inputStream = new FileInputStream(source);
        FileOutputStream outputStream = new FileOutputStream(destination);

        byte[] buffer = new byte[1024];
        int length;

        while ((length = inputStream.read(buffer)) > 0) {
            outputStream.write(buffer, 0, length);
        }

        inputStream.close();
        outputStream.close();
    }
}

在代碼中,將源文件路徑和目標文件路徑替換為實際的文件路徑。然后,通過調用copyFile方法來復制文件。該方法使用FileInputStream從源文件讀取數據,并使用FileOutputStream將數據寫入目標文件。

請確保源文件存在,并且具有讀取權限,目標目錄存在并且具有寫入權限。

0
龙井市| 萨迦县| 会东县| 古交市| 沙河市| 安溪县| 南和县| 兴仁县| 东山县| 屏山县| 乌拉特中旗| 伊宁县| 来安县| 波密县| 南开区| 嵊泗县| 建水县| 白朗县| 尖扎县| 布尔津县| 乐昌市| 定结县| 科尔| 台湾省| 彰化县| 清水县| 时尚| 拜城县| 闵行区| 柳林县| 龙江县| 吉林省| 晋中市| 宣汉县| 新泰市| 循化| 新龙县| 鲁甸县| 高邮市| 灵川县| 本溪|