web-dev-qa-db-ja.com

Java内から実行中のWinプロセスを見つけて強制終了する方法は?

Java実行可能なWinプロセスを見つけるための方法が必要であり、そこから実行可能ファイルの名前がわかります。それが現在実行されているかどうかを確認したいのですが、次の場合にプロセスを強制終了する方法が必要です。見つけた。

24
GHad

コマンドラインウィンドウツールtasklistおよびtaskkillを使用して、JavaからRuntime.exec()を使用して呼び出すことができます。

15
Marcin
private static final String TASKLIST = "tasklist";
private static final String KILL = "taskkill /F /IM ";

public static boolean isProcessRunning(String serviceName) throws Exception {

 Process p = Runtime.getRuntime().exec(TASKLIST);
 BufferedReader reader = new BufferedReader(new InputStreamReader(
   p.getInputStream()));
 String line;
 while ((line = reader.readLine()) != null) {

  System.out.println(line);
  if (line.contains(serviceName)) {
   return true;
  }
 }

 return false;

}

public static void killProcess(String serviceName) throws Exception {

  Runtime.getRuntime().exec(KILL + serviceName);

 }

例:

public static void main(String args[]) throws Exception {
 String processName = "WINWORD.EXE";

 //System.out.print(isProcessRunning(processName));

 if (isProcessRunning(processName)) {

  killProcess(processName);
 }
}
40
1-14x0r

必要な機能を提供する小さなAPIがあります。

https://github.com/kohsuke/winp

Windowsプロセスライブラリ

3
Daniel Lindner

SysInternals PsKill および SysInternals PsList のようなプロセスを強制終了するためのコマンドラインツールを使用できます。

組み込みのtasklist.exeとtaskkill.exeを使用することもできますが、これらはWindowsでのみ利用できますXP Professional以降(Home Editionでは不可))。

Java.lang.Runtime.exec を使用してプログラムを実行します。

2
arturh

これを行うためのグルーヴィーな方法は次のとおりです。

final Process jpsProcess = "cmd /c jps".execute()
final BufferedReader reader = new BufferedReader(new InputStreamReader(jpsProcess.getInputStream()));
def jarFileName = "FileName.jar"
def processId = null
reader.eachLine {
    if (it.contains(jarFileName)) {
        def args = it.split(" ")
        if (processId != null) {
            throw new IllegalStateException("Multiple processes found executing ${jarFileName} ids: ${processId} and ${args[0]}")
        } else {
            processId = args[0]
        }
    }
}
if (processId != null) {
    def killCommand = "cmd /c TASKKILL /F /PID ${processId}"
    def killProcess = killCommand.execute()
    def stdout = new StringBuilder()
    def stderr = new StringBuilder()
    killProcess.consumeProcessOutput(stdout, stderr)
    println(killCommand)
    def errorOutput = stderr.toString()
    if (!errorOutput.empty) {
        println(errorOutput)
    }
    def stdOutput = stdout.toString()
    if (!stdOutput.empty) {
        println(stdOutput)
    }
    killProcess.waitFor()
} else {
    System.err.println("Could not find process for jar ${jarFileName}")
}
2
Craig

次のクラスを使用して Windowsプロセスを強制終了実行中の場合 )。 forceコマンドライン引数/Fを使用して、/IM引数で指定されたプロセスが終了することを確認しています。

import Java.io.BufferedReader;
import Java.io.InputStreamReader;

public class WindowsProcess
{
    private String processName;

    public WindowsProcess(String processName)
    {
        this.processName = processName;
    }

    public void kill() throws Exception
    {
        if (isRunning())
        {
            getRuntime().exec("taskkill /F /IM " + processName);
        }
    }

    private boolean isRunning() throws Exception
    {
        Process listTasksProcess = getRuntime().exec("tasklist");
        BufferedReader tasksListReader = new BufferedReader(
                new InputStreamReader(listTasksProcess.getInputStream()));

        String tasksLine;

        while ((tasksLine = tasksListReader.readLine()) != null)
        {
            if (tasksLine.contains(processName))
            {
                return true;
            }
        }

        return false;
    }

    private Runtime getRuntime()
    {
        return Runtime.getRuntime();
    }
}
1
BullyWiiPlaza

super kakesによって書かれた回答の小さな変更

private static final String KILL = "taskkill /IMF ";

に変更。

private static final String KILL = "taskkill /IM ";

/IMFオプションが機能しません。メモ帳を強制終了しません。while/IMオプションは実際に機能します

0
Harvendra

IMHOはそれを行うライブラリがないため、ネイティブコードを呼び出す必要があります。 JNIは扱いにくくて難しいので、JNA(Java Native Access)を使用してみてください。 https://jna.dev.Java.net/

0
jb.