在windows上java实现关闭浏览器

import java.io.IOException;

public class BrowserKiller {
    public static void main(String[] args) throws IOException {
        Runtime.getRuntime().exec("taskkill /F /IM chrome.exe");
        Runtime.getRuntime().exec("taskkill /F /IM iexplorer.exe");
        Runtime.getRuntime().exec("taskkill /F /IM firefox.exe");
        Runtime.getRuntime().exec("taskkill /F /IM safari.exe");
        Runtime.getRuntime().exec("taskkill /F /IM opera.exe");
    }
}


你可能感兴趣的:(在windows上java实现关闭浏览器)