指定的初始堆大小和最大堆大小不兼容

发布于 2025-01-07 01:13:56 字数 183 浏览 0 评论 0原文

当我运行一个具有 NLP 库的 java 类时,我收到此错误...

Error occurred during initialization of VM
Incompatible initial and maximum heap sizes specified

知道如何解决此错误:)

I got this Error when I run a java class which has an NLP library ....

Error occurred during initialization of VM
Incompatible initial and maximum heap sizes specified

any idea how i can solve this error :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乖不如嘢 2025-01-14 01:13:56

您应该注意,如果将初始堆大小设置为大于最大大小,应用程序将产生此类错误

-Xms 表示初始堆大小
-Xmx 表示特定 JVM 允许的最大堆大小

  • java -Xms128m MyClass
    • 错误,因为默认最大堆大小可能低于 128m
  • java -Xms128m -Xmx128m MyClass
    • 更好,因为初始大小等于或大于最大值

在此处阅读更多内容 http://javahowto.blogspot.com/2006/06/6-common-errors-in-setting-java-heap.html

也很有用,要了解这两个参数,如果您有兴趣,请在此处阅读更多内容:

Java 的 -Xms 和 -Xmx 选项的速度权衡< br>
启动 JVM 时的 Xms 和 Xmx 参数是什么?< /a>

You should note that in case of setting initial heap size bigger than maximum one, application will produce such error

-Xms means initial heap size
-Xmx means maximum heap size allowed for particular JVM

  • java -Xms128m MyClass
    • WRONG, because default maximum heap size could be lower than 128m
  • java -Xms128m -Xmx128m MyClass
    • BETTER, because initial size is equal or higher than maximum

Read more here http://javahowto.blogspot.com/2006/06/6-common-errors-in-setting-java-heap.html

And useful is too, to understand those two arguments, read more here if you're interested:

Speed tradeoff of Java's -Xms and -Xmx options
What are the Xms and Xmx parameters when starting JVMs?

若水微香 2025-01-14 01:13:56

在环境变量中设置 _JAVA_OPTIONS=-Xms128m ,我已附上屏幕截图以供参考。您可以相应地设置内存。
发生这种情况是因为 JVM 没有分配所需的内存。

输入图片此处描述

set _JAVA_OPTIONS=-Xms128m in you environment variables, I have attached screenshot for reference. you can set the memeory accordingly.
This happens because JVM was not allocated the memory required.

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文