请用java代码,将U盘内的zip压缩包拷贝到车机指定目录中
时间: 2024-03-05 22:52:00 浏览: 166
好的,以下是基于Java语言实现的代码:
```
import java.io.*;
public class CopyZipToCar {
public static void main(String[] args) {
// U盘路径
String usbPath = "D:/";
// zip文件名
String zipFileName = "test.zip";
// 车机目录
String carPath = "F:/car/";
// 创建文件对象
File usbFile = new File(usbPath + zipFileName);
File carFile = new File(carPath + zipFileName);
try {
// 创建输入输出流
FileInputStream fis = new FileInputStream(usbFile);
FileOutputStream fos = new FileOutputStream(carFile);
// 缓冲区大小
byte[] buffer = new byte[1024];
int length;
// 读取U盘中的zip文件,写入到车机目录中
while ((length = fis.read(buffer)) > 0) {
fos.write(buffer, 0, length);
}
// 关闭输入输出流
fis.close();
fos.close();
System.out.println("文件拷贝成功!");
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
注意修改`usbPath`、`zipFileName`和`carPath`变量的值为实际路径和目录。此代码只是基本实现,如果需要更加健壮的文件操作,可以使用Apache Commons IO等第三方库。
阅读全文