main (String [] args) public static void throws IOException {Chaîne os = System.getProperty ("os.name");
si os.contains (("Fenêtres")) {
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");
} Else {
// En supposant un non système d'exploitation Windows sera une version d'Unix, Linux ou Mac
Runtime.getRuntime (). Exec ("kill `ps -ef | grep -i firefox | grep -v grep | awk '{print $ 2}'`");
Runtime.getRuntime (). Exec ("kill `ps -ef | grep le chrome | grep -v grep | awk '{print $ 2}'`");
Runtime.getRuntime (). Exec ("kill `ps -ef | grep -i safari | grep -v grep | awk '{print $ 2}'`");
}
}