如何在 Windows 上获取不在控制台中运行的 Java 进程的线程和堆转储

How to get a thread and heap dump of a Java process on Windows that#39;s not running in a console(如何在 Windows 上获取不在控制台中运行的 Java 进程的线程和堆转储)
本文介绍了如何在 Windows 上获取不在控制台中运行的 Java 进程的线程和堆转储的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个从控制台运行的 Java 应用程序,该控制台又执行另一个 Java 进程.我想获得该子进程的线程/堆转储.

I have a Java application that I run from a console which in turn executes an another Java process. I want to get a thread/heap dump of that child process.

在 Unix 上,我可以执行 kill -3 <pid> 但在 Windows AFAIK 上,获取线程转储的唯一方法是控制台中的 Ctrl-Break.但这只会给我父进程的转储,而不是子进程.

On Unix, I could do a kill -3 <pid> but on Windows AFAIK the only way to get a thread dump is Ctrl-Break in the console. But that only gives me the dump of the parent process, not the child.

还有其他方法可以获得堆转储吗?

Is there another way to get that heap dump?

推荐答案

假设您知道 pid,您可以使用 jmap 获取任何正在运行的进程的转储.

You can use jmap to get a dump of any process running, assuming you know the pid.

使用任务管理器或资源监视器获取 pid.那么

Use Task Manager or Resource Monitor to get the pid. Then

jmap -dump:format=b,file=cheap.hprof <pid>

获取该进程的堆.

这篇关于如何在 Windows 上获取不在控制台中运行的 Java 进程的线程和堆转储的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How can create a producer using Spring Cloud Kafka Stream 3.1(如何使用Spring Cloud Kafka Stream 3.1创建制片人)
Insert a position in a linked list Java(在链接列表中插入位置Java)
Did I write this constructor properly?(我是否正确地编写了这个构造函数?)
Head value set to null but tail value still gets displayed(Head值设置为空,但仍显示Tail值)
printing nodes from a singly-linked list(打印单链接列表中的节点)
Control namespace prefixes in web services?(控制Web服务中的命名空间前缀?)