我正在尝试使用JAVA解压缩文件,它正在编译而没有任何错误。 当我从我的工具调用它,并给出文件的绝对目标路径和源路径,例如: 来源:D:\ data \ test.zip 目的地:D:\ data \ op \
我收到Acess被拒绝的错误(我有系统的管理员访问权限)
堆栈追踪:
提取:测试/新文本文档 - 复制(2).txt java.io.FileNotFoundException:D:\ Data \ Op(访问被拒绝)at java.io.FileOutputStream.open(Native Method)at java.io.FileOutputStream。(FileOutputStream.java:179)at java.io.FileOutputStream中。(FileOutputStream.java:70)
下面是我正在调用的函数,我相信它与目标有关,因为它可能不会提取到绝对路径,而是一些无法写入的临时文件夹。我在目的地尝试了一些组合,但没有在我的结束工作。请指导我如何解决它。
public void unzip(String zipFilePath, String destDir, String flName) throws Exception
{
int BUFFER = 2048;//Buffer Size
try
{
File dir = new File(destDir);
// Throw Exception if output directory doesn't exist
if(!dir.exists())
{
//Print Message in Consol
System.out.println("No Destination Directory Exists for Unzip Operation.");
throw new Exception();
}
BufferedOutputStream dest = null;
BufferedInputStream is = null;
ZipEntry entry;
ZipFile zipfile = new ZipFile(zipFilePath);
Enumeration e = zipfile.entries();
while(e.hasMoreElements())
{
entry = (ZipEntry) e.nextElement();
System.out.println("Extracting: " +entry);
is = new BufferedInputStream (zipfile.getInputStream(entry));
int count;
byte data[] = new byte[BUFFER];
FileOutputStream fos = new FileOutputStream(destDir);
dest = new BufferedOutputStream(fos, BUFFER);
while ((count = is.read(data, 0, BUFFER)) != -1)
{
dest.write(data, 0, count);
}
//Close All Streams
dest.flush();
dest.close();
is.close();
}
}
catch(Exception e)
{
e.printStackTrace();
throw new Exception();
}
}
答案 0 :(得分:3)
zip文件的内容可以是目录和文件。在提取时,如果ZipEntry是文件,则可以使用BufferedOutputStream。write()以简单的方式提取它。但是,当ZipEntry是一个目录时,你不能这样做,因为没有目录。因此,您必须使用路径创建一个新目录。
上面的代码没有考虑到目录,因此必须写入新目录的文件会引发问题中提到的异常。
以下方法可以解决您的问题。
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
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();
} else {
// if the entry is a directory, make the directory
File dir = new File(filePath);
dir.mkdir();
}
zipIn.closeEntry();
entry = zipIn.getNextEntry();
}
zipIn.close();
}
答案 1 :(得分:1)
您正在尝试写入目录
FileOutputStream fos = new FileOutputStream(destDir);
尝试将其更改为
FileOutputStream fos = new FileOutputStream(destDir + File.separator + entry.getName ());
使用ZipFile entry
的名称
答案 2 :(得分:1)
来自Oracle的简单解压缩 example:
import java.io.*;
import java.util.zip.*;
public class UnZip {
final int BUFFER = 2048;
public static void main (String argv[]) {
try {
BufferedOutputStream dest = null;
FileInputStream fis = new
FileInputStream(argv[0]);
ZipInputStream zis = new
ZipInputStream(new BufferedInputStream(fis));
ZipEntry entry;
while((entry = zis.getNextEntry()) != null) {
System.out.println("Extracting: " +entry);
int count;
byte data[] = new byte[BUFFER];
// write the files to the disk
FileOutputStream fos = new
FileOutputStream(entry.getName());
dest = new
BufferedOutputStream(fos, BUFFER);
while ((count = zis.read(data, 0, BUFFER))
!= -1) {
dest.write(data, 0, count);
}
dest.flush();
dest.close();
}
zis.close();
} catch(Exception e) {
e.printStackTrace();
}
}
}