Java实现解压压缩包

/**
*
* inputFile 压缩包文件的路径 destDirPath 解压到哪个目录  filename 设置解压之后的文件名
*/
public static void zipUncompress(String inputFile, String destDirPath, String filename) throws Exception {
    try {
        File srcFile = new File(inputFile);//获取当前压缩文件
        // 判断源文件是否存在
        if (!srcFile.exists()) {
            throw new Exception(srcFile.getPath() + "所指文件不存在");
        }
        ZipFile zipFile = new ZipFile(srcFile);//创建压缩文件对象
        //开始解压
        Enumeration<?> entries = zipFile.entries();
        while (entries.hasMoreElements()) {
            ZipEntry entry = (ZipEntry) entries.nextElement();
            // 如果是文件夹,就创建个文件夹
            if (entry.isDirectory()) {
                String dirPath = destDirPath + "/" + entry.getName();
                srcFile.mkdirs();
            } else {
                // 如果是文件,就先创建一个文件,然后用io流把内容copy过去
                File targetFile = new File
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
Java实现单个压缩包的下载,通常可以通过HTTP或HTTPS协议来获取远程服务器上的文件,并使用`java.net.URL`和`java.io`包中的工具来处理下载过程。以下是一个简单的示例,使用`java.net.URLConnection`下载ZIP文件: ```java import java.io.*; import java.net.URL; public class ZipDownloadExample { public static void main(String[] args) { try { // 假设URL地址为远程zip文件的链接 String urlString = "http://example.com/download.zip"; URL url = new URL(urlString); // 创建URL连接 HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod("GET"); connection.setDoOutput(true); // 设置允许输出流 // 获取响应码,检查是否成功 int responseCode = connection.getResponseCode(); if (responseCode == HttpURLConnection.HTTP_OK) { // 打开输入和输出流 InputStream inputStream = connection.getInputStream(); FileOutputStream outputStream = new FileOutputStream("downloaded.zip"); // 下载后的本地文件路径 byte[] buffer = new byte[1024]; int bytesRead; while ((bytesRead = inputStream.read(buffer)) != -1) { outputStream.write(buffer, 0, bytesRead); } // 关闭流 inputStream.close(); outputStream.close(); System.out.println("Download complete."); } else { System.out.println("Error: " + responseCode); } } catch (IOException e) { e.printStackTrace(); } } } ``` 这个例子假设下载的是ZIP文件,如果需要下载其他类型的压缩包(如tar.gz),只需要根据需要调整下载文件名和解压方法。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值