这些字节[]在哪里? (在 Java 中使用 JProfiler)
我正在分析一个内存泄漏的 Java 程序。 使用 JProfiler 我发现我得到了大量的 byte[] 数据。 有没有办法了解更多相关信息? 它何时分配/创建,在哪里?
I'm profiling a Java program that is leaking memory. Using JProfiler I see I get crazy amount of byte[] data. Is there a way to know more information about it? When is it allocated/created, where is it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够找到这些数组的 GC 根的路径,这应该告诉您它们的用途。
You should be able to find the path to the GC root of those arrays, this should tell you what they are used for.