我有一个 140 MB 的 ZIP 文件,其中包含大约 40,000 个 MP3 文件。我使用以下代码播放 ZIP 文件中的某个文件而不解压缩它:
String fullPath = Environment.getExternalStorageDirectory().getPath() + "_audio_.mp3";
String path = Environment.getExternalStorageDirectory().getPath() + "mySoundFolder";
try {
ZipFile zip = new ZipFile(path + "myFile.zip");
Enumeration zipEntries = zip.entries();
ZipEntry entry = zip.getEntry("myFile" + "/" + currentWord + ".mp3");
if (entry != null) {
Log.i(MAIN_TAG, "entry found: " + entry.getName());
InputStream in = zip.getInputStream(entry);
File f = new File(fullPath);
FileOutputStream out = new FileOutputStream(f);
IOUtils.copy(in, out);
byte buffer[] = new byte[4096];
int read;
while ((read = in.read(buffer)) != -1)
{
out.write(buffer, 0, read);
}
if (f.exists())
{
Log.i(MAIN_TAG,"Audio file found!");
final MediaPlayer mp = new MediaPlayer();
mp.setDataSource(fullPath);
mp.prepare();
mp.setOnBufferingUpdateListener(null);
mp.setLooping(false);
mp.setOnPreparedListener(new OnPreparedListener()
{ public void onPrepared(MediaPlayer arg0)
{
mp.start();
Log.i(MAIN_TAG,"Pronunciation finished!");
}});
}
else
{
Log.i(MAIN_TAG,"File doesn't exist!!");
}
}
else {
// no such entry in the zip
Log.i(MAIN_TAG, "no such entry in the zip");
}
}
catch (IOException e) {
e.printStackTrace();
Log.i(MAIN_TAG,"IOException reading zip file");
}
}
这段代码有两个奇怪的地方:
- 它在 中完美运行,
Android 2.2
但在Android 4.0.3
. 在2.2
中,它按我的预期找到并播放 MP3 文件,但在 中,它一直说它在 ZIP 文件 ( )4.0.3
中找不到条目。"no such entry in the zip"
- 如果我将 MP3 文件的数量减少到大约 100 个文件,那么在 中
Android 4.0.3
,它会按照应有的方式查找并播放选定的 MP3 文件。
各位大神能帮我看看是什么问题吗?
提前非常感谢。