所以我正在构建一个具有文件传输应用程序的应用程序,该应用程序允许您将文件从主文件夹内的一个文件夹传输到另一个文件夹。但是,我收到此错误“VM不会让我们分配...字节”。
Logcat错误:
04-16 16:32:06.072: E/dalvikvm-heap(17644): 184440-byte external allocation too large for this process.
04-16 16:32:06.132: E/GraphicsJNI(17644): VM won't let us allocate 184440 bytes
有没有人有解决方案可以解决这个问题?我看到了几个关于图像但不是文件的帖子。
添加代码:(根据要求)。请注意,此代码也会复制到其他地方,但我自己做了一些修改。
private static void copyFile(File sourceFile, File destFile)
throws IOException {
if (!sourceFile.exists()) {
return;
}
if (!destFile.exists()) {
destFile.createNewFile();
}
destFile = new File(destFile.toString().substring(0, destFile.toString().lastIndexOf('/')));
FileChannel source = null;
FileChannel destination = null;
source = new FileInputStream(sourceFile).getChannel();
destination = new FileOutputStream(destFile).getChannel();
if (destination != null && source != null) {
destination.transferFrom(source, 0, source.size());
}
if (source != null) {
source.close();
}
if (destination != null) {
destination.close();
}
}
正如人们提到的,记忆错误是一个图像,是的,谢谢你找到我的贪婪的错误。完成这个fileNotFoundException后,我会尽快纠正它。
很抱歉,等待更新的logcat忘记添加一个尝试并捕获复制文件方法,然后另一个方法从另一个显示顶部内容的方法中捕获另一个错误:
04-16 18:19:41.322: W/System.err(4989): java.io.FileNotFoundException: /mnt/sdcard/ActivityApp (Is a directory)
04-16 18:19:41.322: W/System.err(4989): at org.apache.harmony.luni.platform.OSFileSystem.open(Native Method)
04-16 18:19:41.322: W/System.err(4989): at dalvik.system.BlockGuard$WrappedFileSystem.open(BlockGuard.java:232)
04-16 18:19:41.322: W/System.err(4989): at java.io.FileOutputStream.<init>(FileOutputStream.java:94)
04-16 18:19:41.322: W/System.err(4989): at java.io.FileOutputStream.<init>(FileOutputStream.java:66)
04-16 18:19:41.322: W/System.err(4989): at tab.layout.FileFusionActivity.copyFile(FileFusionActivity.java:107)
04-16 18:19:41.322: W/System.err(4989): at tab.layout.FileFusionActivity.onListItemClick(FileFusionActivity.java:78)
04-16 18:19:41.322: W/System.err(4989): at android.app.ListActivity$2.onItemClick(ListActivity.java:319)
04-16 18:19:41.322: W/System.err(4989): at android.widget.AdapterView.performItemClick(AdapterView.java:284)
04-16 18:19:41.322: W/System.err(4989): at android.widget.ListView.performItemClick(ListView.java:3513)
04-16 18:19:41.322: W/System.err(4989): at android.widget.AbsListView$PerformClick.run(AbsListView.java:1812)
04-16 18:19:41.322: W/System.err(4989): at android.os.Handler.handleCallback(Handler.java:587)
04-16 18:19:41.322: W/System.err(4989): at android.os.Handler.dispatchMessage(Handler.java:92)
04-16 18:19:41.322: W/System.err(4989): at android.os.Looper.loop(Looper.java:123)
04-16 18:19:41.322: W/System.err(4989): at android.app.ActivityThread.main(ActivityThread.java:3683)
04-16 18:19:41.322: W/System.err(4989): at java.lang.reflect.Method.invokeNative(Native Method)
04-16 18:19:41.322: W/System.err(4989): at java.lang.reflect.Method.invoke(Method.java:507)
04-16 18:19:41.322: W/System.err(4989): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
04-16 18:19:41.332: W/System.err(4989): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
04-16 18:19:41.332: W/System.err(4989): at dalvik.system.NativeStart.main(Native Method)
答案 0 :(得分:1)
destFile = new File(destFile.toString().substring(0, destFile.toString().lastIndexOf('/')));
将其更改为此类
destFile = new File(destFile.toString().substring(0, destFile.toString().lastIndexOf('/')),"hello.dat");
您看到的错误可能与复制过程没有直接关系。您有profiled个应用来检查内存使用情况吗? 您可以尝试的另一件事是按照此question
中的概述将文件复制到块中