0

我有一个 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");                
            }           
        }   

这段代码有两个奇怪的地方:

  1. 它在 中完美运行,Android 2.2但在Android 4.0.3. 在2.2中,它按我的预期找到并播放 MP3 文件,但在 中,它一直说它在 ZIP 文件 ( )4.0.3中找不到条目。"no such entry in the zip"
  2. 如果我将 MP3 文件的数量减少到大约 100 个文件,那么在 中Android 4.0.3,它会按照应有的方式查找并播放选定的 MP3 文件。

各位大神能帮我看看是什么问题吗?

提前非常感谢。

4

1 回答 1

0

最后,我有一个解决这个问题的方法。我将我的 zip 文件分成两个文件,每个文件包含大约20k entries. 瞧,它又像魅力一样起作用了。

我听说 Java 在读取超过64k entries. 我不知道为什么我的文件只有大约 40k 条目,但它也面临着问题。

于 2013-11-08T16:12:05.257 回答