1 20 50 150 500
欢迎来到哈希软件站,找素材,搜软件,就上哈希软件站!
当前位置 >首页 >软件下载 >电脑软件 >编程开发 >源码相关

java中使用压缩算法 最新免费版

软件信息
  • 分类:源码相关
  • 大小:5KB
  • 语言: 中文
  • 环境: WinAll
  • 更新:2024-11-12
  • 评级:
  • 系统: Windows Linux Mac Ubuntu
  • 软件类别: 国产软件 / 免费软件 / 源码相关
  • 插件情况:

通过对数据压缩算法的简要介绍,利用java.util.zip包实现数据的压缩与解压,并扩展到在网络传输方面如何应用java.util.zip包现数据压缩与解压。供广大java爱好者以及开发者学习使用,节约了开发者时间,是当前比较流行的压缩代码。

部分代码介绍:

/** 
  * 功能:把 sourceDir 目录下的所有文件进行 zip 格式的压缩,保存为指定 zip 文件
  * @param sourceDir 如果是目录,eg:D:\MyEclipse\first\testFile,则压缩目录下所有文件;
  *      如果是文件,eg:D:\MyEclipse\first\testFile\aa.zip,则只压缩本文件
  * @param zipFile 最后压缩的文件路径和名称,eg:D:\MyEclipse\first\testFile\aa.zip
  */
 public File doZip(String sourceDir, String zipFilePath) 
 throws IOException {
  
  File file = new File(sourceDir);
  File zipFile = new File(zipFilePath);
  ZipOutputStream zos = null;
  try {
   // 创建写出流操作
   OutputStream os = new FileOutputStream(zipFile);
   BufferedOutputStream bos = new BufferedOutputStream(os);
   zos = new ZipOutputStream(bos);
   
   String basePath = null;
   
   // 获取目录
   if(file.isDirectory()) {
    basePath = file.getPath();
   }else {
    basePath = file.getParent();
   }

下载地址

热门软件

Top