//如果文件夹路径不存在 , 则创建文件夹
if (!entryDir.exists() || !entryDir.isDirectory())
{
entryDir.mkdirs();
}
//创建解压文件
entryFile = new File(entryFilePath);
if (entryFile.exists())
{
//检测文件是否允许删除 , 如果不允许删除 , 将会抛出SecurityException
SecurityManager securityManager = new SecurityManager();
securityManager.checkDelete(entryFilePath);
//删除已存在的目标文件
entryFile.delete();
}
//写入文件
bos = new BufferedOutputStream(new FileOutputStream(entryFile));
bis = new BufferedInputStream(zip.getInputStream(entry));
while ((count = bis.read(buffer, 0, bufferSize)) != -1)
{
bos.write(buffer, 0, count);
}
bos.flush();
bos.close();
}
}
public static void main(String[] args)
{
String zipPath = "d:\\ziptest\\zipPath";
String dir = "d:\\ziptest\\rawfiles";
String zipFileName = "test.zip";
try
{
zip(dir, zipPath, zipFileName);
}
catch (Exception e)
{
e.printStackTrace();
}
String zipFilePath = "D:\\ziptest\\zipPath\\test.zip";
String unzipFilePath = "D:\\ziptest\\zipPath";
try
{
unzip(zipFilePath, unzipFilePath, true);
}
catch (Exception e)
{
e.printStackTrace();
}
}
}
用java实现ftp侧压缩文件的解压我们在开发项目的时候,特别是B/S系统,经常会遇到要批量上传文件的需求,对此需求一般有如下几个解决方案(以B/S为例):1. 在客户端提供文件上传接口,一次上传一个文件2. 一次上传多个文件3. 将需要上传的文件打包,一次上传到服务器,并自动解压到指定目录1,2方法都有几个很明显的不足,用户工作量大,文件如果过大,在网络环境中,上传的效率低下,另外文件在不同的目录,是无法进行一次选择上传的.所以打包上传就成为了比较流行的批量文件上传的解决方案,下面就来一起讨论一下在java中如何实现:主要功能需求:a. 上传文件,将文件保存在服务器b. 读取服务器上压缩文件,解压到指定目录下面就这两个需求说说编码实现上传: 使用了smartupload开源程序参考链接:
C# 中GZIP 压缩,求在JAVA中解压代码byte[]buf=newbyte[4096*2];
//建立字节数组输入流
ByteArrayInputStreami=newByteArrayInputStream(buffer);
//建立gzip解压输入流
GZIPInputStreamgzin=newGZIPInputStream(i);
intsize=gzin.read(buf);
i.close();
gzin.close();
byteb[]=newbyte[size];
System.arraycopy(buf,0,b,0,size);
returnb;
java中怎么解压rar文件 到指定文件目录中1.代码如下:
[java] view plain copy
span style="font-size:18px;background-color: rgb(204, 204, 204);"package cn.gov.csrc.base.util;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
/**
* 将文件夹下面的文件
* 打包成zip压缩文件
*
* @author admin
*
*/
public final class FileToZip {
private FileToZip(){}
/**
* 将存放在sourceFilePath目录下的源文件 , 打包成fileName名称的zip文件,并存放到zipFilePath路径下
* @param sourceFilePath :待压缩的文件路径
* @param zipFilePath :压缩后存放路径
* @param fileName :压缩后文件的名称
* @return
*/
public static boolean fileToZip(String sourceFilePath,String zipFilePath,String fileName){
boolean flag = false;
推荐阅读
- 齐齐怎么开手机直播,齐齐直播平台怎么样
- 婴儿游泳馆如何营销策划,婴儿游泳馆如何营销策划
- 真实挖矿模拟器菜单游戏,挖矿模拟器无限金币版
- Linux查看驱动驱命令 linux 查看驱动命令
- 兑兑下载,兑兑回收下载
- sqlserver精简安装包,sql server安装包
- 电信淄博服务器,电信 服务器
- linux命令行界面连网 linux 连网
- 电脑登录图片怎么改,刚打开电脑时的登录图片怎么更改