我在过去 3 小时内一直遇到这个错误。当我从 SVN 签出最新代码后,它突然停止工作。
笔记:
我的新项目大小约为 135 MB,我正在使用 eclipse 开普勒。
myApp/res/libs 中还有 3 个 jar,分别命名为 sqlite.jar、ksoap2.jar、rt.jar
所以我用谷歌搜索并找到了这个答案。我编辑了eclipse.ini
从:
-startup plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar --launcher.library plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20140116-2212 -product org.eclipse.epp.package.standard.product --launcher.defaultAction openFile --launcher.XXMaxPermSize 256M -showsplash org.eclipse.platform --launcher.XXMaxPermSize 256m --launcher.defaultAction openFile --launcher.appendVmargs -vmargs -Dosgi.requiredJavaVersion=1.6 -Xms40m -Xmx512m
至
-startup plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar --launcher.library plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20140116-2212 -product org.eclipse.epp.package.standard.product --launcher.defaultAction openFile --launcher.XXMaxPermSize 1024M -showsplash org.eclipse.platform --launcher.XXMaxPermSize 1024m --launcher.defaultAction openFile --launcher.appendVmargs -vmargs -Dosgi.requiredJavaVersion=1.6 -Xms512m -Xmx1024m
但它仍然无法正常工作并在 eclipse 中出现相同的错误。任何帮助,将不胜感激。
解决方案是从您的项目中删除 rt.jar(有 18635 个类文件)文件。这是一个heavy jar。在 JRE 或 J2EE/J2ME 中,默认使用该 jar 文件。在 Android 中我不会,所以我们必须手动添加。