如何增加 Java ME 中的堆大小?

发布于 2024-07-11 01:00:36 字数 120 浏览 5 评论 0原文

有没有办法增加设备上 Java ME 的堆大小? 我正在为诺基亚 N95 开发一个应用程序,但当我尝试对较大图像进行图像处理时遇到内存问题。 手机有足够的可用堆空间,但似乎将 Java ME 允许使用的空间限制为 1MB。

Is there any way to increase the heap size for Java ME on a device? I'm developing an application for a Nokia N95, but am bumping into memory issues when I try to do image processing of larger images. The phone has plenty of heap space available, but seems to restrict the amount allowed to be used by Java ME to 1MB.

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

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

发布评论

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

评论(2

给不了的爱 2024-07-18 01:00:36

简短的回答:否。

较长的回答:堆大小是硬编码在设备虚拟机中的。 如果内存不足,您需要将任务拆分为更小的子任务,以允许 GC 启动。内存有限,只能执行有限的操作。 你算...

Short answer: No.

Longer answer: Heap-size is hardcoded in device VM. If you are running out of memory you need to split you task into more smaller sub tasks to allow GC to kick in. With limited memory only limited operations are possible. You figure...

陈年往事 2024-07-18 01:00:36

在某些 J2ME 手机上,设置 Midlet-Heap-Size jad 属性有效。 假设手机只有 2MB 堆,将此 jad 属性设置为 3MB 会将堆增加到 3MB。 你可以尝试一下,但它对我来说只适用于很少的手机。

On some J2ME handsets setting Midlet-Heap-Size jad attributes works. Say a handset has only 2MB heap, setting this jad attribute to say 3MB increases the Heap to 3MB. You can try this out, it worked on very few handsets for me though.

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