説明
1. ThreadDump は、Java アプリケーションの問題を診断するために使用され、メモリ リークの発見、デッドロック スレッドの発見などに使用できます。
2. システムは、スレッド、スレッドの実行ステータス、識別、呼び出し、および完全なクラス名、実行メソッド、ソース コードの行数などを含むその他の情報を取得できます。
機能
はさまざまなオペレーティング システムで使用できます。
はさまざまな Java アプリケーション サーバーで使用できます。
はさまざまなオペレーティング システムで使用できます。システムのパフォーマンスに影響を与えずに使用;
問題はアプリケーションのコード行に直接存在する可能性があります。
例
public class JStack { public static void main(String[] args) throws Exception { ... String pid = args[optionCount]; String params[]; if (locks) { params = new String[] { "-l" }; } else { params = new String[0]; } runThreadDump(pid, params); ... } // Attach to pid and perform a thread dump private static void runThreadDump(String pid, String args[]) throws Exception { VirtualMachine vm = null; try { vm = VirtualMachine.attach(pid); } catch (Exception x) { ... } // Cast to HotSpotVirtualMachine as this is implementation specific // method. InputStream in = ((HotSpotVirtualMachine) vm) .remoteDataDump((Object[]) args); // read to EOF and just print output byte b[] = new byte[256]; int n; do { n = in.read(b); if (n > 0) { String s = new String(b, 0, n, "UTF-8"); System.out.print(s); } } while (n > 0); in.close(); vm.detach(); }
以上がJavaでスレッドダンプを使用する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。