共计 1050 个字符,预计需要花费 3 分钟才能阅读完成。
在 Java 中复制文件可以使用以下方法:
- 使用 Java IO 库中的 FileInputStream 和 FileOutputStream 类进行复制操作。示例代码如下:
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) {File sourceFile = new File("source.txt");
File destFile = new File("dest.txt");
try (FileInputStream fis = new FileInputStream(sourceFile);
FileOutputStream fos = new FileOutputStream(destFile)) {byte[] buffer = new byte[1024];
int length;
while ((length = fis.read(buffer)) > 0) {fos.write(buffer, 0, length);
}
System.out.println("File copied successfully!");
} catch (IOException e) {e.printStackTrace();
}
}
}
- 使用 Apache Commons IO 库中的 FileUtils 类进行复制操作。示例代码如下:
import org.apache.commons.io.FileUtils;
import java.io.File;
import java.io.IOException;
public class FileCopy {public static void main(String[] args) {File sourceFile = new File("source.txt");
File destFile = new File("dest.txt");
try {FileUtils.copyFile(sourceFile, destFile);
System.out.println("File copied successfully!");
} catch (IOException e) {e.printStackTrace();
}
}
}
这两种方法都是常用的文件复制方法,你可以根据自己的需求选择适合的方法来实现文件复制操作。
丸趣 TV 网 – 提供最优质的资源集合!
正文完