Java tutorial
//package com.java2s; public class Main { static void destroyProcess(Process process) { if (process != null) process.destroy(); } }