`

JAVA使用winrar解压缩和解带有密码的压缩包的一个类

    博客分类:
  • java
阅读更多

 

     通过使用winrar这个工具对文件进行操作。唯一不大好的地方就是需要客户安装winrar,或者在打包成web时候需要将winrar这个软件加载过去

Java代码
package com.hfjh.common;

/**
* 这个类是用来做为解压缩时,对文件的一些操作
* yfyang 080411
*/
import java.io.File;

public class ZipUtil {

public static final String password = "123456";
public static final String winrarPath = "C:\\Program Files\\WinRAR\\WinRAR.exe";

/**
* 将指定的压缩文件解压缩到指定的路径下 解压缩后在指定的路径下生成一个以压缩文件名的文件夹,文件下即为压缩文件的文件
*
* @param zipFile
* 压缩文件路径
* @param folder
* 要解压到何处的路径
* @return
*/
public static boolean zip(String zipFile, String folder) {
boolean bool = false;
folder = folder + stringUtil(zipFile);
String cmd = winrarPath + " x -iext -ow -ver -- " + zipFile + " "
+ folder;
int source = zipFile.lastIndexOf("\\") + 1;
String newPath = zipFile.substring(source);
if (FileUtil.isFileExist(folder, newPath)) {
bool = false;
String msg = "在" + folder + "下文件" + newPath + "已经存在";
} else {
try {
Process proc = Runtime.getRuntime().exec(cmd);
if (proc.waitFor() != 0) {
if (proc.exitValue() == 0) {
bool = false;
}
} else {
bool = true;
}
} catch (Exception e) {
e.printStackTrace();
}
}
return bool;
}

/**
* 解压带有密码的压缩文件 默认密码为123456,如果需要更改则只要修改password的值
*
* @param zipFile
* @param folder
* @return
*/
public static boolean zipForPassword(String zipFile, String folder) {
boolean bool = false;
String _folder = "\"" + folder + stringUtil(zipFile) + "\\" + "\"";
zipFile = "\"" + zipFile + "\"";
String cmd = winrarPath + " x -p" + password + " " + zipFile + " "
+ _folder;
int source = zipFile.lastIndexOf("\\") + 1;
String newPath = zipFile.substring(source);
String folderName = stringUtil(newPath);

if (FileUtil.isFileExist(folder, folderName)) {
bool = false;
String msg = "在" + folder + "下文件" + newPath + "已经存在";
} else {
try {
Process proc = Runtime.getRuntime().exec(cmd);
if (proc.waitFor() != 0) {
if (proc.exitValue() == 0) {
bool = false;
}
} else {
bool = true;
}
} catch (Exception e) {
e.printStackTrace();
}
}
return bool;
}



/**
* String的方法工具,主要是针对路径中取得压缩文件的名称,不包括后缀名
*
* @param str
* @return 压缩文件的名称
*/
public static String stringUtil(String filePath) {
String fileName = new File(filePath).getName();
String fileRealName = null;
int indexStr = fileName.lastIndexOf(".");
fileRealName = fileName.substring(0, indexStr);
return fileRealName;
}

/**
* 测试类
*
* @param args
*/
public static void main(String[] args) {
String zipFile = "D:\\企业征信\\2340720080229.rar";
String folder = "D:\\企业征信\\";
boolean b = ZipUtil.zipForPassword(zipFile, folder);
// String path = folder + ZipUtil.stringUtil(zipFile);
// boolean d = ZipUtil.deleteFolder(path);
System.out.println(b);
// System.out.println(d);
}
}

 

java 代码(FileUtil):
package com.hfjh.common.report;

import java.io.File;
import java.util.ArrayList;

/**
* 文件操作类
* 包括产生临时文件夹,删除临时文件夹等操作方法
* @author poplar
*
*/
public class FileUtil {

private static final String linkstr = "\t";

/**
* 删除在解压缩时产生的临时文件夹
* @param folder 临时文件夹路径
* @return true为删除成功,false为失败
*/
public static boolean deleteFolder(String folder) {
boolean bool = false;
try {
deleteAllFile(folder);
String filePath = folder;
filePath = filePath.toString();
File f = new File(filePath);
f.delete();
bool = true;
} catch (Exception e) {
e.printStackTrace();
}
return bool;
}

/**
* 删除文件夹下所有内容
* @param folederPath 文件夹完整路径
* @return
*/
public static boolean deleteAllFile(String folederPath) {
boolean bool = false;
String filePath = null;
File file = new File(folederPath);
if (!file.exists()) {
return bool;
}
if (!file.isDirectory()) {
return bool;
}
String[] tempList = file.list();
File temp = null;
for (int i = 0; i < tempList.length; i++) {
if (folederPath.endsWith(File.separator)) {
temp = new File(folederPath + tempList[i]);
filePath = temp.getPath();
} else {
temp = new File(folederPath + File.separator + tempList[i]);
}
if (temp.isFile()) {
boolean b = temp.delete();
if (!b) {
String msg = filePath + "文件删除失败";
bool = false;
}
}
if (temp.isDirectory()) {
deleteAllFile(folederPath + "/" + tempList[i]); //删除文件夹里面的文件

deleteFolder(folederPath + "/" + tempList[i]); //在删除空文件夹

}
}
return bool;
}

/**
* 判断文件是否存在
*
* @param fileName
* @return
*/
public static boolean isFileExist(String folder, String fileName) {
boolean bool = false;
bool = new File(folder, fileName).exists();
return bool;
}

/**
* 测试文件夹是否存在
* @param folder
* @return
*/
public static boolean existFile(String folder){
File file = new File(folder);
if (file.isDirectory()){
return true;
}else {
return false;
}
}

/**
* 对文件路径进行处理,主要是在传递过来的路径下创建一个文件夹
*
* @param folder
* @return 返回新的路径名
*/
public static String fileDir(String folder, String folderName) {
String path = null;
if (!FileUtil.isFileExist(folder, folderName)) {
String fullPath = folder + folderName;
File f = new File(fullPath);
f.mkdir();
path = f.getPath();
}
return path;
}

/**
* 遍历文件夹
* @param file
*/
public ArrayList refreshFileList(String strPath) {
ArrayList filelist = new ArrayList();
File dir = new File(strPath);
File[] files = dir.listFiles();
if (files == null) {
filelist = null;
}
for (int i = 0; i < files.length; i++) {
if (files[i].isDirectory()) {
refreshFileList(files[i].getAbsolutePath());
} else {
String strFileName = files[i].getAbsolutePath().toLowerCase();
System.out.println("---" + strFileName);
filelist.add(files[i].getAbsolutePath());
return filelist;
}
}
return filelist;
}
}

 

分享到:
评论

相关推荐

    调用WinRar实现加密压缩文件和解密解压缩文件

    总的来说,"调用WinRar实现加密压缩文件和解密解压缩文件"是一个涉及文件压缩、加密、程序间通信等多个IT领域的实践课题。通过掌握这些知识,开发者可以为用户提供更加安全、便捷的数据管理方案。

    java调用winrar生成压缩文件路径有空格问题

    ### Java调用WinRAR生成压缩文件路径有空格问题解决方案 在进行文件处理时,我们经常需要对文件进行压缩操作以便于传输或者节省存储空间。Java作为一种常用的开发语言,在进行此类操作时通常会通过调用外部命令的...

    windows 下java调用winrar压缩文件为rar 格式

    一个常用的库是`com.igormaznitsa:nativesharp-jni`,它封装了WinRAR的API,使得Java可以调用WinRAR的功能。安装该库后,我们可以通过JNI(Java Native Interface)来调用WinRAR的C++接口。 2. **JNI原理** JNI...

    WinRAR 压缩包解压缩软件

    在WinRAR中,用户可以轻松地对文件进行压缩,通过选择“添加到压缩文件”选项,可以将一个或多个文件打包成一个压缩包。在创建RAR或ZIP文件时,用户可以选择不同的压缩级别,从最快到最高等级,以平衡压缩速度和压缩...

    解压缩软件 winrar-64位

    WinRAR是一款广泛使用的文件压缩和解压缩软件,专为Windows操作系统设计,支持64位系统架构。它由RarLab公司开发,以其强大的压缩能力、广泛的文件格式支持和用户友好的界面而闻名。 WinRAR的主要功能是压缩和解...

    C++编写的压缩解压缩程序(调用WinRAR的命令行程序)

    程序的核心机制是调用了WinRAR的命令行工具Rar.exe,这是一个与WinRAR图形用户界面配套的命令行版本,可以执行压缩、解压缩以及管理RAR档案的其他任务。 WinRAR是一款流行的文件压缩和解压缩软件,支持多种文件格式...

    破解WinRAR压缩包密码绿色软件

    WinRAR压缩包密码破解软件,我用了下,破解了个试试,很好用,绝对可以破解。下了用用吧,不会后悔的

    JAVA实现对文件夹“加密码压缩”

    压缩后效果等同于用winrar给压缩包加密码 时间紧迫,暂时存在中文文件夹名称乱码问题 不影响文件夹内各类型文件内容 实现方法见功能说明txt文档,只需传入文件夹路径,Zip文件路径,密码 本人JAVA实习生,因...

    c# 利用WinRAR压缩解压缩文件

    以下是一个解压缩文件的C#代码示例: ```csharp public void ExtractArchive(string archivePath, string targetExtractPath) { var process = new Process(); process.StartInfo.FileName = "rar.exe"; process...

    winrar压缩解压缩

    2. 解压缩文件:只需选中需要解压的RAR或ZIP文件,点击顶部菜单的“提取到”或右键菜单中的“提取到”,然后指定一个目标文件夹,WinRAR会自动完成解压缩过程。 3. 预览文件:在不解压的情况下,WinRAR允许用户预览...

    VB版仿WinRar解压缩源代码

    【VB版仿WinRar解压缩源代码】是一个基于Visual Basic编程语言的项目,旨在实现类似WinRAR软件的文件压缩与解压缩功能。WinRAR是一款广泛使用的文件压缩工具,而VB版的仿制版本则是为了让开发者能够理解压缩与解压缩...

    winrar压缩包密码破解

    字典暴力破解winrar压缩包密码工具, 设置教程更新.zip

    Java实现对文件夹的加密码压缩(绝对可用)

    压缩后效果等同于用winrar给压缩包加密码 时间紧迫,暂时存在中文文件夹名称乱码问题 不影响文件夹内各类型文件内容 实现方法见功能说明txt文档,只需传入文件夹路径,Zip文件路径,密码 本人JAVA实习生,因业务...

    winrar解压缩文件工具

    WinRAR是一款功能强大的压缩和解压缩软件,主要用于备份数据、缩减电子邮件附件的大小以及解压缩从互联网上下载的RAR、ZIP等文件。它支持新建RAR及ZIP格式的文件,让用户能够轻松管理各种类型的压缩文件。 WinRAR在...

    VB版仿WinRar解压缩源代码(修正版)

    这是一个仿winrar的解压缩程序的源码,使用了Unrar.dll来实现解压缩功能,目前改dll的版本是3.8,还没有实现压缩功能。使用前,请把压缩包中的unrar.dll 拷贝到系统目录(windows/system32)目录下方可使用。 这个代码下载...

    使用WinRAR压缩解压缩文件(2.0)

    通过以上步骤,你可以创建一个自定义的文件压缩和解压缩工具,这不仅方便了日常使用,也加深了对C#和WinRAR API的理解。记住,编写程序时应始终关注代码的可读性、健壮性和安全性,确保程序能稳定、高效地运行。

    WinRAR压缩解压缩工具(破解版)

    WinRAR压缩解压缩工具(破解版)WinRAR压缩解压缩工具(破解版)

    C#调用WINRAR解压缩

    在.NET Framework 2环境下,C#开发者经常需要与外部应用程序交互,例如调用WinRAR进行文件的压缩和解压缩操作。这是因为.NET Framework本身并不内置直接支持RAR格式的库。本篇将详细介绍如何在C#中利用WinRAR命令行...

    C#调用Winrar实现压缩与解压缩

    在IT行业中,有时候我们需要在应用程序中集成压缩和解压缩功能,C#作为一种广泛使用的编程语言,可以调用外部工具如WinRAR来实现这一目标。本文将深入探讨如何在C#中利用WinRAR API来完成文件的压缩和解压缩操作。 ...

    调用WinRAR加密压缩多个文件

    在处理多个文件时,只需将文件路径列表传递给压缩函数,WinRAR会将它们一起压缩到同一个压缩包内。对于大量文件的操作,还可以使用循环结构批量处理。 总的来说,调用WinRAR加密压缩多个文件涉及的知识点包括:文件...

Global site tag (gtag.js) - Google Analytics