Package

Source Code of Main2

import org.jvnet.winp.WinProcess;

/**
* @author Kohsuke Kawaguchi
*/
public class Main2 {
    public static void main(String[] args) throws Exception {
        ProcessBuilder pb = new ProcessBuilder(new String[]{"notepad"});
        Process p = pb.start();
        Thread.sleep(3000);
        new WinProcess(p).killRecursively();
    }
}
TOP

Related Classes of Main2

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.