gpt4 book ai didi

java - dexifying 18.5 MB "android-4.1.1_r1.jar"给出 "java.lang.OutOfMemoryError: Java heap space"

转载 作者:行者123 更新时间:2023-12-01 14:14:35 24 4
gpt4 key购买 nike

我正在尝试启动 OSGI 框架并在 Android 上启动一些 bundle 。其中一个 bundle 是 android API bundle ,它是一个 18.5 MB 的 jar。我读到,为了在 Android 上启动 bundle ,所有 bundle 都应该首先被dexified。

所以我尝试使用以下命令来dexify这个“android-4.1.1_r1.jar”:

dx --dex --output=classes.dex C:\Users\student\Documents\eclipse\myPlugins\plugins\android-4.1.1_r1.jar 

但是我在命令行上遇到了这个错误:

java.lang.OutOfMemoryError: Java heap space

首先:我真的需要对这个文件进行dexify吗?第二:如果我必须将其dexify,那么我怎样才能摆脱上述错误?

增加堆大小,

我尝试过:java -Xmx4g,但我得到了

Invalid maximum heap size: -Xmx4g
The specified size exceeds the maximum representable size.
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.

然后我尝试了java -Xmx2g,但我得到了

Error occurred during initialization of VM
Could not reserve enough space for object heap
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.

所以我尝试了java -Xmx1gjava -Xmx1100g然后我得到了:

Usage: java [-options] class [args...]
(to execute a class)
or java [-options] -jar jarfile [args...]
(to execute a jar file)
where options include:
-d32 use a 32-bit data model if available
-d64 use a 64-bit data model if available
-client to select the "client" VM
-server to select the "server" VM
-hotspot is a synonym for the "client" VM [deprecated]
The default VM is client.

-cp <class search path of directories and zip/jar files>
-classpath <class search path of directories and zip/jar files>
A ; separated list of directories, JAR archives,
and ZIP archives to search for class files.
-D<name>=<value>
set a system property
-verbose[:class|gc|jni]
enable verbose output
-version print product version and exit
-version:<value>
require the specified version to run
-showversion print product version and continue
-jre-restrict-search | -no-jre-restrict-search
include/exclude user private JREs in the version search
-? -help print this help message
-X print help on non-standard options
-ea[:<packagename>...|:<classname>]
-enableassertions[:<packagename>...|:<classname>]
enable assertions with specified granularity
-da[:<packagename>...|:<classname>]
-disableassertions[:<packagename>...|:<classname>]
disable assertions with specified granularity
-esa | -enablesystemassertions
enable system assertions
-dsa | -disablesystemassertions
disable system assertions
-agentlib:<libname>[=<options>]
load native agent library <libname>, e.g. -agentlib:hprof
see also, -agentlib:jdwp=help and -agentlib:hprof=help
-agentpath:<pathname>[=<options>]
load native agent library by full pathname
-javaagent:<jarpath>[=<options>]
load Java programming language agent, see java.lang.instrument

-splash:<imagepath>
show splash screen with specified image
See http://www.oracle.com/technetwork/java/javase/documentation/index.html for m
ore details.

在所有情况下,当我尝试对 bundle 文件进行 dexify 时,我仍然会遇到相同的错误。我应该怎么办?我使用的是 Windows 32 位,安装了 4.00 GB(2.96 GB 可用)。

最佳答案

最大堆大小由多种因素决定,包括:

  • 无论您运行的是 32 位还是 64 位 JVM。
  • 无论您运行的是 32 位还是 64 位操作系统。
  • 您使用的操作系统/版本。
  • 您有多少物理内存。
  • 您的系统是否有足够的磁盘空间分配用于分页。
  • 您的 Java 应用程序需要多少非堆内存。

在现代 32 位 Windows(没有 PAE)上,您可以请求的最大值可能是 1.4Gb 到 1.6Gb ( reference )。所以 -Xmx1g 应该可以工作......除非你同时运行很多其他东西。

<小时/>

So are you saying that what I showed above worked?

没有。

我是说它应该有效。您收到“使用情况”消息的事实令人困惑。我认为这意味着命令行还有其他问题。 (您是否忘记告诉 java 要运行哪个类?)

从我所说的推论,如果您关闭各种其他应用程序(例如 IDE、Web 浏览器、电子邮件客户端)以释放内存和/或分页文件空间,它可能会起作用。 (如果您的页面文件 fragment 严重,重新启动也可能有帮助。)

如果这没有帮助,那么:

  • 您可以尝试将 JAR 文件拆分为更小的 JAR 文件。
  • 您可以在更大的机器上进行索引。
  • 您可以安装 Linux ...这将允许您在相同的硬件上创建明显更大的 Java 堆。

关于java - dexifying 18.5 MB "android-4.1.1_r1.jar"给出 "java.lang.OutOfMemoryError: Java heap space",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18231324/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com