android压缩工具 mac,Android解压缩在Mac上压缩的文件

在Android应用中,遇到一个问题,当尝试解压缩在Mac OS狮子版上创建的ZIP文件时,文件大小、CRC和压缩大小显示为-1,导致无法写入SD卡。虽然在Windows 7和Mac上可以正常解压缩,但Android出现错误。代码检查显示在解压缩过程中没有明显遗漏,问题可能出在ZIP文件的创建或Android的处理方式上。已提供ZIP文件和一个小型apk以供进一步分析。
摘要由CSDN通过智能技术生成

我有一个应用程序,它下载一个zip并解压缩我SDCard上的文件.

一切正常,但是当我的同事在他的Mac(狮子)上创建zip文件时,我的所有文件都有

大小:-1

CRC:-1

compressedsize:-1

我无法将文件写入我的SD卡.两个拉链具有完全相同的内容,唯一的区别在于它们最初压缩的位置.这是我解压缩文件的代码:

public class UnzipTask extends AsyncTask {

private static final String TAG = UnzipTask.class.getSimpleName();

private String mDestLocation;

private ZipListener mListener;

private Context mCtx;

private int mCallbackId;

public UnzipTask(Context context, ZipListener listener, File dir)

{

mCtx = context;

mListener = listener;

mDestLocation = dir.getAbsolutePath() + "/";

}

public void setId(int id)

{

mCallbackId = id;

}

@Override

protected Void doInBackground(String... arg0) {

try {

String file = arg0[0];

InputStream is = mCtx.getAssets().open(file);

unzipFile(is);

} catch (IOException e) {

e.printStackTrace();

} catch (Exception e) {

e.printStackTrace();

}

return null;

}

/**

* Private function that ensures a directory exist

* @param dir

*/

private void _dirChecker(String dir) {

File f = new File(mDestLocation + dir);

if (!f.isDirectory()) {

f.mkdirs();

}

}

private void unzipFile(InputStream input) throws Exception {

ZipInputStream zin = new ZipInputStream(input);

ZipEntry ze = null;

while ((ze = zin.getNextEntry()) != null) {

Log.v(TAG, "Unzipping " + ze.getName());

if(mListener != null)

{

mListener.onUnzipped(mCallbackId, ze.getName(), ze.g etSize(), ze.getCrc(), ze.getCompressedSize());

}

if (ze.isDirectory()) {

_dirChecker(ze.getName());

} else if (ze.getCompressedSize() > 0 && ze.getSize() > 0 && ze.getCrc() != 0.0) {

// If size=-1 -> writing to disk fails

String fileOutput = mDestLocation + ze.getName();

FileOutputStream fout = new FileOutputStream(fileOutput);

int read = 0;

byte[] buffer = new byte[(int) ze.getSize()];

while ((read = zin.read(buffer)) >= 0) {

fout.write(buffer, 0, read);

}

zin.closeEntry();

fout.close();

} else {

Log.v(TAG, "Skipping entry" + ze.getName());

}

}

}

zin.close();

}

}

几个笔记

1)我可以在Windows 7上解压缩这两个文件

2)我的同事可以在他的Mac上解压缩这两个文件

3)唯一的问题是,在Android上我无法解压缩MAC创建的zip文件…

题:

有谁知道为什么在Mac上压缩的zip文件有这些无效的大小?我的解压缩过程(在Android上)是否遗漏了一些代码?

如果你愿意,你可以在这里下载拉链,以及一个非常小的apk来显示输出:

编辑:更新链接

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值