java.lang.OutOfMemoryError的工具:Java堆空间,Java Swing应用程序
我正在使用 Java Swing 应用程序。我收到 java.lang.OutOfMemoryError: Java 堆空间。我无法弄清楚哪个方法正在创建许多对象或者是否有任何不需要的引用。我想找出问题的根本原因。请指导我有关此问题的任何工具(JProfiler)。另外,由于我之前没有使用过这个工具,因此任何有关该工具的添加信息都会有所帮助。提前致谢。
克里希纳
I am working with a Java Swing Application. I am getting java.lang.OutOfMemoryError: Java heap space. I am not able to figure out which method is creating many objects or if there are any not needed references. I want to figure out the root cause for the problem. Kindly guide me about any tool (JProfiler) for this issue. Also as I have not used this tool before so any added information regarding the same will be helpful. Thanks in advance.
Krishna
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您还没有分析器,您可能会发现 JVisualVM 很有用。它随 JDK 一起提供。
If you don't already own a profiler, you might find JVisualVM useful. It ships with the JDK.
NetBeans IDE 附带了功能齐全的分析器。
The NetBeans IDE ships with a full featured profiler.
jmap 和 Eclipse 内存分析器 Too1
[1]:http://www.eclipse.org/mat/ 是一个很好的组合
jmap and the Eclipse Memory Analyzer Too1
[1]: http://www.eclipse.org/mat/ are a good combination