jhat: add Chinese translation (#6265)

beep
BillLucky 2021-08-06 16:25:19 +08:00 committed by GitHub
parent 3d7dd2169e
commit e61ac03ef1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

16
pages.zh/common/jhat.md Normal file
View File

@ -0,0 +1,16 @@
# jhat
> Java 堆分析工具。
> 更多信息:<https://docs.oracle.com/javase/8/docs/technotes/tools/unix/jhat.html>.
- 分析堆转储文件(来自 jmap通过 http 端口 7000 进行查看:
`jhat {{路径/堆转储文件}}`
- 分析堆转储文件,为 http 服务指定备用端口:
`jhat -p {{端口}} {{路径/堆转储文件}}`
- 通过 jhat 分析转储文件,指定使用 8GB RAM建议使用 2-4 倍的转储大小):
`jhat -J-mx8G {{路径/堆转储文件}}`