Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java を使用して特定のディレクトリ内のすべてのプロセスを停止する方法はありますか? C:\ ドライブのディレクトリ「X」にあるすべてのプロセスを停止するには、Java プログラムが必要です。
たとえば、Java コンソール コマンドから起動できます。
Process p = Runtime.exec("taskkill /IM notepad.exe"); int exitValue = p.waitFor();