java编程实现使用字节流拷贝一个图片文件
时间: 2023-04-06 07:01:23 浏览: 145
可以使用 FileInputStream 和 FileOutputStream 类来实现字节流拷贝图片文件。具体代码如下:
```
import java.io.*;
public class CopyImage {
public static void main(String[] args) {
String sourceFile = "source.jpg";
String targetFile = "target.jpg";
try {
FileInputStream fis = new FileInputStream(sourceFile);
FileOutputStream fos = new FileOutputStream(targetFile);
byte[] buffer = new byte[1024];
int len;
while ((len = fis.read(buffer)) != -1) {
fos.write(buffer, 0, len);
}
fis.close();
fos.close();
System.out.println("图片文件拷贝成功!");
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
阅读全文