1

它显示 07-07 16:34:48.270: W/System.err(6050): copy java.io.IOException 我已经获得了许可

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" /> 

文件复制代码:

  File file = new File("/mnt/sdcard/infobooks/");

            if (file.exists() == false) {
                file.mkdirs();
            }

            InputStream myInput = this.getAssets().open("Book4.pdf");
            String outFileName = Environment.getExternalStorageDirectory()+"/infobooks/Book4.pdf";
            File file2=new File(outFileName);
            file2.createNewFile();

            FileOutputStream myOutput = new FileOutputStream(outFileName);

            // transfer bytes from the inputfile to the outputfile
            byte[] buffer = new byte[1024];
            int length;
            while ((length = myInput.read(buffer)) > 0) {
                myOutput.write(buffer, 0, length);
            }

            // Close the streams
            myOutput.flush();
            myOutput.close();
            myInput.close();
4

1 回答 1

0

从它的声音来看,您的错误与写入外部存储无关,而是与资产读取有关。资产目录中是否存在文件“Book4.pdf”?它有多大?你运行的是什么版本的安卓?曾经有一段时间,Android 在使用压缩时对资产中的文件大小有限制。在 Android 2.3 之前,AssetManager 无法读取大的压缩文件(大意味着在未压缩状态下超过 1MB)。解决这个问题的方法是不压缩文件(通过给它一个 aapt 跳过压缩的扩展名,例如 jpg 或 png),转到命令行构建,或者将文件拆分成更小的块,然后在设备上重新组合它们。

但是,如果没有完整的堆栈跟踪,我们无法真正知道错误的原因是什么。

于 2012-07-07T13:08:22.317 回答