Java 9에서는 기본 호출을 통해 프로세스의 PID 를 검색할 수 있으며 ProcessHandle을 통해 달성할 수 있습니다. 또한 현재 실행 중인 Java 프로세스(JVM) 및 프로세스에 대한 세부정보가 포함된 Info (ProcessHandle의 내부 클래스) 클래스에 대한 정보를 검색할 수도 있습니다. 또한 시스템에서 현재 실행 중인 모든 프로세스의 스냅샷을 반환할 수도 있습니다.
import java.lang.ProcessHandle.Info; public class ProcessAPIChanges { public void detailedAPIInfo(<strong>ProcessHandle </strong>processHandle) { <strong>Info </strong>processInfo = processHandle.<strong>info()</strong>; System.out.println("Detailed Process Info is Provided Below: "); System.out.println("[Executable Name] " + processInfo.<strong>command().get()</strong>); System.out.println("[User Name] " + processInfo.<strong>user().get()</strong>); System.out.println("[Start Time] " + processInfo.<strong>startInstant().get().toString()</strong>); } public static void main(String args[]) { System.out.println("Process API Changes (Core Library) "); ProcessAPIChanges processAPIChanges = new ProcessAPIChanges(); <strong>ProcessHandle </strong>processHandle = ProcessHandle.<strong>current()</strong>; System.out.println("[Current Process Id] " + processHandle.<strong>pid()</strong>); processAPIChanges.detailedAPIInfo(processHandle); ProcessHandle.allProcesses() .<strong>filter</strong>(ph -> ph.info().command().<strong>isPresent()</strong>) .<strong>limit</strong>(4).forEach((process) -> processAPIChanges.detailedAPIInfo(process)); } }
<strong>Process API Changes (Core Library) [Current Process Id] 5724 Detailed Process Info is Provided Below: [Executable Name] C:\Program Files\Java\jdk-9.0.4\bin\java.exe [User Name] Tutorialspoint\User [Start Time] 2020-04-01T07:35:43.152Z Detailed Process Info is Provided Below: [Executable Name] C:\WINDOWS\System32\taskhostex.exe [User Name] Tutorialspoint\User [Start Time] 2020-04-01T04:14:36.241Z Detailed Process Info is Provided Below: [Executable Name] C:\Program Files\Synaptics\SynTP\SynTPEnh.exe [User Name] Tutorialspoint\User [Start Time] 2020-04-01T04:14:36.257Z Detailed Process Info is Provided Below: [Executable Name] C:\WINDOWS\explorer.exe [User Name] Tutorialspoint\User [Start Time] 2020-04-01T04:14:36.335Z Detailed Process Info is Provided Below: [Executable Name] C:\Program Files (x86)\Dell Wireless\Bluetooth Suite\BtvStack.exe [User Name] Tutorialspoint\User [Start Time] 2020-04-01T04:14:51.594Z</strong>
위 내용은 Java 9의 Process API에 대한 핵심 라이브러리 변경 사항은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!