Java 9 verbessert die Klasse Process durch das Hinzufügen neuer Methoden und stellt außerdem neue Schnittstellen bereit: ProcessHandle und ProcessHandle.Info, um alle Details über den Prozess und seine Informationen abzurufen.
Das Folgende ist eine Liste der neuen Methoden, die Process in Java 9 hinzugefügt wurden.
public class ProcessTest { public static void main(String args[]) { <strong> ProcessHandle </strong>processHandle = ProcessHandle.current(); <strong> ProcessHandle.Info</strong> processInfo = processHandle.info(); System.out.println(processHandle.<strong>pid()</strong>); System.out.println(processHandle.<strong>parent()</strong>); System.out.println(processInfo.<strong>arguments()</strong>.<strong>isPresent()</strong>); System.out.println(processInfo.<strong>command()</strong>.<strong>isPresent()</strong>); System.out.println(processInfo.<strong>command().get().contains</strong>("tutorialspoint")); System.out.println(processInfo.<strong>startInstant().isPresent()</strong>); } }
<strong>4892 Optional[7788] false true false true</strong>
Das obige ist der detaillierte Inhalt vonWelche neuen Methoden werden der Prozess-API in Java 9 hinzugefügt?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!