如何解压,解压时不创建子目录
How to unzip and do not create a sub-directory when extract it
这是用于提取 zip 文件的 UnzipUtility
class,我面临的问题是,当我提取 zip 文件时,我仍然有解压缩的文件夹及其内容,我需要跳过该级别提取它并立即获得它的内容。
public class UnzipUtility {
/**
* Size of the buffer to read/write data
*/
private static final int BUFFER_SIZE = 4096;
/**
* Extracts a zip file specified by the zipFilePath to a directory specified by
* destDirectory (will be created if does not exists)
* @param zipFilePath
* @param destDirectory
* @throws IOException
*/
public void unzip(String zipFilePath, String destDirectory) throws IOException {
File destDir = new File(destDirectory);
if (!destDir.exists()) {
destDir.mkdir();
}
ZipInputStream zipIn = new ZipInputStream(new FileInputStream(zipFilePath));
ZipEntry entry = zipIn.getNextEntry();
// iterates over entries in the zip file
while (entry != null) {
String filePath = destDirectory + File.separator + entry.getName();
if (!entry.isDirectory()) {
// if the entry is a file, extracts it
extractFile(zipIn, filePath);
} else {
// if the entry is a directory, make the directory
File dir = new File(filePath);
dir.mkdir();
}
zipIn.closeEntry();
entry = zipIn.getNextEntry();
}
zipIn.close();
}
/**
* Extracts a zip entry (file entry)
* @param zipIn
* @param filePath
* @throws IOException
*/
private void extractFile(ZipInputStream zipIn, String filePath) throws IOException {
if(Files.notExists(new File(filePath).getParentFile().toPath())) {
new File(filePath).getParentFile().mkdir();
}
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(filePath));
byte[] bytesIn = new byte[BUFFER_SIZE];
int read = 0;
while ((read = zipIn.read(bytesIn)) != -1) {
bos.write(bytesIn, 0, read);
}
bos.close();
}
}
我通过添加第三个参数来指定 zip 中提取根目录的目录来实现该问题的解决方案,这样我们就可以在没有其父文件夹的情况下提取 zip 文件的内容。
public class UnzipUtility {
/**
* Size of the buffer to read/write data
*/
private static final int BUFFER_SIZE = 4096;
/**
* Extracts a zip file specified by the zipFilePath to a directory specified by
* destDirectory (will be created if does not exists)
*/
public void unzip(String zipFilePath, String destDirectory, String rootLevelDir) throws IOException {
if(rootLevelDir == null || rootLevelDir.isEmpty()){
rootLevelDir="/";
}
File destDir = new File(destDirectory);
if (!destDir.exists()) {
destDir.mkdirs();
}
try(ZipInputStream zipIn = new ZipInputStream(new FileInputStream(zipFilePath))) {
ZipEntry entry = zipIn.getNextEntry();
// iterates over entries in the zip file
while (entry != null) {
String filePath = destDirectory + File.separator + entry.getName();
if ( rootLevelDir.equals("/") || entry.getName().startsWith(rootLevelDir)) {
if (!rootLevelDir.equals("/")) {
filePath = filePath.replaceFirst(rootLevelDir, "");
}
if (!entry.isDirectory()) {
// if the entry is a file, extracts it
extractFile(zipIn, filePath);
} else {
// if the entry is a directory, make the directory
File dir = new File(filePath);
dir.mkdirs();
}
}
zipIn.closeEntry();
entry = zipIn.getNextEntry();
}
}
}
/**
* Extracts a zip entry (file entry)
*/
private void extractFile(ZipInputStream zipIn, String filePath) throws IOException {
if (Files.notExists(new File(filePath).getParentFile().toPath())) {
new File(filePath).getParentFile().mkdirs();
}
try(BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(filePath))) {
byte[] bytesIn = new byte[BUFFER_SIZE];
int read;
while ((read = zipIn.read(bytesIn)) != -1) {
bos.write(bytesIn, 0, read);
}
}
}
}
这是用于提取 zip 文件的 UnzipUtility
class,我面临的问题是,当我提取 zip 文件时,我仍然有解压缩的文件夹及其内容,我需要跳过该级别提取它并立即获得它的内容。
public class UnzipUtility {
/**
* Size of the buffer to read/write data
*/
private static final int BUFFER_SIZE = 4096;
/**
* Extracts a zip file specified by the zipFilePath to a directory specified by
* destDirectory (will be created if does not exists)
* @param zipFilePath
* @param destDirectory
* @throws IOException
*/
public void unzip(String zipFilePath, String destDirectory) throws IOException {
File destDir = new File(destDirectory);
if (!destDir.exists()) {
destDir.mkdir();
}
ZipInputStream zipIn = new ZipInputStream(new FileInputStream(zipFilePath));
ZipEntry entry = zipIn.getNextEntry();
// iterates over entries in the zip file
while (entry != null) {
String filePath = destDirectory + File.separator + entry.getName();
if (!entry.isDirectory()) {
// if the entry is a file, extracts it
extractFile(zipIn, filePath);
} else {
// if the entry is a directory, make the directory
File dir = new File(filePath);
dir.mkdir();
}
zipIn.closeEntry();
entry = zipIn.getNextEntry();
}
zipIn.close();
}
/**
* Extracts a zip entry (file entry)
* @param zipIn
* @param filePath
* @throws IOException
*/
private void extractFile(ZipInputStream zipIn, String filePath) throws IOException {
if(Files.notExists(new File(filePath).getParentFile().toPath())) {
new File(filePath).getParentFile().mkdir();
}
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(filePath));
byte[] bytesIn = new byte[BUFFER_SIZE];
int read = 0;
while ((read = zipIn.read(bytesIn)) != -1) {
bos.write(bytesIn, 0, read);
}
bos.close();
}
}
我通过添加第三个参数来指定 zip 中提取根目录的目录来实现该问题的解决方案,这样我们就可以在没有其父文件夹的情况下提取 zip 文件的内容。
public class UnzipUtility {
/**
* Size of the buffer to read/write data
*/
private static final int BUFFER_SIZE = 4096;
/**
* Extracts a zip file specified by the zipFilePath to a directory specified by
* destDirectory (will be created if does not exists)
*/
public void unzip(String zipFilePath, String destDirectory, String rootLevelDir) throws IOException {
if(rootLevelDir == null || rootLevelDir.isEmpty()){
rootLevelDir="/";
}
File destDir = new File(destDirectory);
if (!destDir.exists()) {
destDir.mkdirs();
}
try(ZipInputStream zipIn = new ZipInputStream(new FileInputStream(zipFilePath))) {
ZipEntry entry = zipIn.getNextEntry();
// iterates over entries in the zip file
while (entry != null) {
String filePath = destDirectory + File.separator + entry.getName();
if ( rootLevelDir.equals("/") || entry.getName().startsWith(rootLevelDir)) {
if (!rootLevelDir.equals("/")) {
filePath = filePath.replaceFirst(rootLevelDir, "");
}
if (!entry.isDirectory()) {
// if the entry is a file, extracts it
extractFile(zipIn, filePath);
} else {
// if the entry is a directory, make the directory
File dir = new File(filePath);
dir.mkdirs();
}
}
zipIn.closeEntry();
entry = zipIn.getNextEntry();
}
}
}
/**
* Extracts a zip entry (file entry)
*/
private void extractFile(ZipInputStream zipIn, String filePath) throws IOException {
if (Files.notExists(new File(filePath).getParentFile().toPath())) {
new File(filePath).getParentFile().mkdirs();
}
try(BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(filePath))) {
byte[] bytesIn = new byte[BUFFER_SIZE];
int read;
while ((read = zipIn.read(bytesIn)) != -1) {
bos.write(bytesIn, 0, read);
}
}
}
}