我们开始检查我的应用程序的性能,因为一段时间后它变得越来越慢。我正在使用jvisualvm观察原因。任何人都可以告诉我如何在Unix中使用jvisualvm,就像在Windows中一样,我们可以通过UI进行检查。我们在Unix中也可以有相同的看法吗?

让我到jvisualvm的路径是/Prj/tools/java/bin/jvisualvm

当我使用帮助时

Usage: /Prj/tools/java/bin/../lib/visualvm//platform7/lib/nbexec {options} arguments

General options:
  --help                show this help
  --jdkhome <path>      path to Java(TM) 2 SDK, Standard Edition
  -J<jvm_option>        pass <jvm_option> to JVM

  --cp:p <classpath>    prepend <classpath> to classpath
  --cp:a <classpath>    append <classpath> to classpath
Core options:
  --laf <LaF classname> use given LookAndFeel class instead of the default
  --fontsize <size>     set the base font size of the user interface, in points
  --locale <language[:country[:variant]]> use specified locale
  --userdir <path>      use specified directory to store user settings

Module reload options:
  --reload /path/to/module.jar  Installs or reinstalls a module JAR file.

最佳答案

只需输入您的终端:

/Prj/tools/java/bin/jvisualvm

然后按回车。如果要传递一些参数或选项(如JDK home),请使用帮助提供的格式,在上面的命令中将其放在“jvisualvm”之后。

关于java - Unix中的jvisualvm,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19534404/

10-09 03:13