在Linux上使用Java来读取RAR文件、计算文件的MD5值、返回文件名和MD5值,然后删除RAR文件,你可以使用如下的代码示例
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
public class ReadRARAndCalculateMD5 {
public static void main(String[] args) {
String rarFilePath = "/path/ww.rar"; // 替换为你的RAR文件路径
String outputDir = "/path/extracted_files/"; // 替换为解压后文件存放路径
try {
// 解压RAR文件
unzipRARFile(rarFilePath, outputDir);
// 计算MD5值并获取文件名
HashMap<String, String> md5Map = calculateMD5(outputDir);
// 输出MD5值和文件名
for (String filename : md5Map.keySet()) {
String md5 = md5Map.get(filename);
System.out.println("File: " + filename + ", MD5: " + md5);
}
// 删除解压后的文件
deleteDirectory(new File(outputDir));
} catch (IOException | NoSuchAlgorithmException e) {
e.printStackTrace();
}
}
private static void unzipRARFile(String rarFilePath, String outputDir) throws IOException {
// 使用你的解压RAR文件的方法,例如使用RarArchiveInputStream
// 这里用ZipFile作为示例
ZipFile zipFile = new ZipFile(rarFilePath);
Enumeration<? extends ZipEntry> entries = zipFile.entries();
while (entries.hasMoreElements()) {
ZipEntry entry = entries.nextElement();
String entryName = entry.getName();
File destFile = new File(outputDir, entryName);
if (entry.isDirectory()) {
destFile.mkdirs();
} else {
destFile.getParentFile().mkdirs();
try (InputStream is = zipFile.getInputStream(entry); FileOutputStream fos = new FileOutputStream(destFile)) {
byte[] buffer = new byte[1024];
int bytesRead;
while ((bytesRead = is.read(buffer)) != -1) {
fos.write(buffer, 0, bytesRead);
}
}
}
}
zipFile.close();
}
private static HashMap<String, String> calculateMD5(String directory) throws IOException, NoSuchAlgorithmException {
HashMap<String, String> md5Map = new HashMap<>();
File dir = new File(directory);
File[] files = dir.listFiles();
if (files != null) {
for (File file : files) {
if (file.isFile()) {
String md5 = calculateFileMD5(file);
md5Map.put(file.getName(), md5);
}
}
}
return md5Map;
}
private static String calculateFileMD5(File file) throws IOException, NoSuchAlgorithmException {
MessageDigest md = MessageDigest.getInstance("MD5");
try (FileInputStream fis = new FileInputStream(file)) {
byte[] buffer = new byte[8192];
int bytesRead;
while ((bytesRead = fis.read(buffer)) != -1) {
md.update(buffer, 0, bytesRead);
}
}
byte[] md5Bytes = md.digest();
StringBuilder md5 = new StringBuilder();
for (byte md5Byte : md5Bytes) {
md5.append(Integer.toString((md5Byte & 0xff) + 0x100, 16).substring(1));
}
return md5.toString();
}
private static void deleteDirectory(File dir) {
if (dir.isDirectory()) {
File[] files = dir.listFiles();
if (files != null) {
for (File file : files) {
deleteDirectory(file);
}
}
}
dir.delete();
}
}
在这个示例中,我们使用ZipFile
来打开RAR文件(在Linux中通常使用unrar
命令解压RAR文件),然后计算每个文件的MD5值。计算MD5值使用了MessageDigest
类。最后,我们将MD5值和文件名存储在HashMap中,并删除了解压后的文件。确保替换rarFilePath
和outputDir
为你的文件路径。