gpt4 book ai didi

java - 读取 Zip 存档中的文件并将其内容放入 Android 中的字符串中

转载 作者:太空狗 更新时间:2023-10-29 16:24:02 24 4
gpt4 key购买 nike

这是我的第一个问题,尽管我已经使用了很多来自 Stack Overflow 的提示。但是对于这种情况我还没有找到解决办法。

情况是这样的:我有一个压缩文件,我想读取一个特定的文件并将其内容放入一个字符串变量中,该变量将被返回并放入 Android 中的 TextView 中。我不想把文件写入sdcard,我只是想进行一次内存操作。

例如,在 db.zip 中我有一个名为 packed.txt 的文件,其内容是“Stack á é ç”。我的方法中返回的字符串显示“83 116 97 99 107 32 195 161 32 (...)”,这是字符的 UTF-8 值。到目前为止,我尝试将它们转换为人类可读的形式,但没有成功。尝试了 InputStreamReader 但我无法正确使用它。我的源代码如下。

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
import android.util.Log;

/**
*
* @author jon
*/
public class Decompress {
private String _zipFile;
private String _location;

public Decompress(String zipFile, String location) {
_zipFile = zipFile;
_location = location;

_dirChecker("");
}

public String unzip(String desiredFile) {

String strUnzipped = "";

try {
FileInputStream fin = new FileInputStream(_zipFile);
ZipInputStream zin = new ZipInputStream(fin);
ZipEntry ze = null;
while ((ze = zin.getNextEntry()) != null) {
Log.v("Decompress", "Unzipping " + ze.getName());

if(ze.isDirectory()) {
_dirChecker(ze.getName());
} else {

//FileOutputStream fout = new FileOutputStream(_location + ze.getName());

/**** Changes made below ****/
if (ze.getName().toString().equals(desiredFile)) {
byte[] bytes = new byte[(int) ze.getSize()];
if (zin.read(bytes, 0, bytes.length) == bytes.length) {
strUnzipped = new String(bytes, "UTF-8");
}
else {
strUnzipped = "Read error...";
}

/*** REMOVED
if (ze.getName() == desiredFile) {
for (int c = zin.read(); c != -1; c = zin.read()) {
strUnzipped += c;
//fout.write(c);
} */
}

zin.closeEntry();
//fout.close();
}

}
zin.close();
} catch(Exception e) {
Log.e("Decompress", "unzip", e);
}

return strUnzipped;

}

private void _dirChecker(String dir) {
File f = new File(_location + dir);

if(!f.isDirectory()) {
f.mkdirs();
}
}
}

最佳答案

很抱歉我最初发布了这个....跑到你的段落上说你已经试过了。

您可以使用“UTF-8”字符集创建 InputStreamReader,它会自动将输入数据转换为正确的字符。

while ((ze = zin.getNextEntry()) != null) { 
Log.v("Decompress", "Unzipping " + ze.getName());
if(ze.isDirectory()) {
_dirChecker(ze.getName());
} else {
if (ze.getName() == desiredFile) {
byte[] bytes= new byte[ze.getSize()];
zin.read(bytes, 0, bytes.length);
strUnzipped= new String( bytes, "UTF-8" );
/* Removing this as it is easier to just read all the bytes in at once
InputStreamReader isr= new InputStreamReader(zin, "UTF-8");
char c= 0;
for (char c = isr.read(); c != -1; c = isr.read()) {
strUnzipped += c;
}
*/
}
zin.closeEntry();
}
}

请尝试上面的方法,看看效果如何。

关于java - 读取 Zip 存档中的文件并将其内容放入 Android 中的字符串中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6765439/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com