java Winrar 解压方法

2024-01-26 09:58
文章标签 java 方法 解压 winrar

本文主要是介绍java Winrar 解压方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

java Winrar 解压方法
该方法只能用来对已经压缩的文件进行解压,压缩加密的文件也可以,方法比较简单,从网上抓的,调试成功可以直接拿来用,不过比较死。

package util;

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


public class FileUtil {

private static final String linkstr = "t";


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;
}


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;
}


public static boolean isFileExist(String folder, String fileName) {
boolean bool = false;
bool = new File(folder, fileName).exists();
return bool;
}


public static boolean existFile(String folder){
File file = new File(folder);
if (file.isDirectory()){
return true;
}else {
return false;
}
}


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;
}


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;
}
}
--------------

package util;


import java.io.File;

public class ZipUtil {

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


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;
}


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;
}


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;
}


public static void main(String[] args) {
String zipFile = "G:\test\简历.rar";
String folder = "G:\test\";
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 Winrar 解压方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/646437

相关文章

Window Server2016加入AD域的方法步骤

《WindowServer2016加入AD域的方法步骤》:本文主要介绍WindowServer2016加入AD域的方法步骤,包括配置DNS、检测ping通、更改计算机域、输入账号密码、重启服务... 目录一、 准备条件二、配置ServerB加入ServerA的AD域(test.ly)三、查看加入AD域后的变

Window Server2016 AD域的创建的方法步骤

《WindowServer2016AD域的创建的方法步骤》本文主要介绍了WindowServer2016AD域的创建的方法步骤,文中通过图文介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、准备条件二、在ServerA服务器中常见AD域管理器:三、创建AD域,域地址为“test.ly”

NFS实现多服务器文件的共享的方法步骤

《NFS实现多服务器文件的共享的方法步骤》NFS允许网络中的计算机之间共享资源,客户端可以透明地读写远端NFS服务器上的文件,本文就来介绍一下NFS实现多服务器文件的共享的方法步骤,感兴趣的可以了解一... 目录一、简介二、部署1、准备1、服务端和客户端:安装nfs-utils2、服务端:创建共享目录3、服

SpringBoot使用Apache Tika检测敏感信息

《SpringBoot使用ApacheTika检测敏感信息》ApacheTika是一个功能强大的内容分析工具,它能够从多种文件格式中提取文本、元数据以及其他结构化信息,下面我们来看看如何使用Ap... 目录Tika 主要特性1. 多格式支持2. 自动文件类型检测3. 文本和元数据提取4. 支持 OCR(光学

Java内存泄漏问题的排查、优化与最佳实践

《Java内存泄漏问题的排查、优化与最佳实践》在Java开发中,内存泄漏是一个常见且令人头疼的问题,内存泄漏指的是程序在运行过程中,已经不再使用的对象没有被及时释放,从而导致内存占用不断增加,最终... 目录引言1. 什么是内存泄漏?常见的内存泄漏情况2. 如何排查 Java 中的内存泄漏?2.1 使用 J

JAVA系统中Spring Boot应用程序的配置文件application.yml使用详解

《JAVA系统中SpringBoot应用程序的配置文件application.yml使用详解》:本文主要介绍JAVA系统中SpringBoot应用程序的配置文件application.yml的... 目录文件路径文件内容解释1. Server 配置2. Spring 配置3. Logging 配置4. Ma

Java 字符数组转字符串的常用方法

《Java字符数组转字符串的常用方法》文章总结了在Java中将字符数组转换为字符串的几种常用方法,包括使用String构造函数、String.valueOf()方法、StringBuilder以及A... 目录1. 使用String构造函数1.1 基本转换方法1.2 注意事项2. 使用String.valu

java脚本使用不同版本jdk的说明介绍

《java脚本使用不同版本jdk的说明介绍》本文介绍了在Java中执行JavaScript脚本的几种方式,包括使用ScriptEngine、Nashorn和GraalVM,ScriptEngine适用... 目录Java脚本使用不同版本jdk的说明1.使用ScriptEngine执行javascript2.

Spring MVC如何设置响应

《SpringMVC如何设置响应》本文介绍了如何在Spring框架中设置响应,并通过不同的注解返回静态页面、HTML片段和JSON数据,此外,还讲解了如何设置响应的状态码和Header... 目录1. 返回静态页面1.1 Spring 默认扫描路径1.2 @RestController2. 返回 html2

Python中使用defaultdict和Counter的方法

《Python中使用defaultdict和Counter的方法》本文深入探讨了Python中的两个强大工具——defaultdict和Counter,并详细介绍了它们的工作原理、应用场景以及在实际编... 目录引言defaultdict的深入应用什么是defaultdictdefaultdict的工作原理