約 40,000 個の MP3 ファイルを含む 140 MB の ZIP ファイルがあります。次のコードを使用して、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");
}
}
このコードには 2 つの奇妙な点があります。
- では問題なく動作し
Android 2.2
ますが、 では失敗しAndroid 4.0.3
ます。では2.2
期待どおりに MP3 ファイルを見つけて再生しますが、4.0.3
では ZIP ファイル ( ) のエントリが見つからないと言い続けます"no such entry in the zip"
。 - MP3 ファイルの数を約 100 ファイルに減らす
Android 4.0.3
と、選択した MP3 ファイルが検索されて再生されます。
問題が何であるかを理解するのを手伝ってもらえますか?
よろしくお願いします。