web-dev-qa-db-ja.com

JavaでLinuxコマンドを実行する方法は?

2つのファイルの差分を作成したい。私はJavaでコードを検索しようとしましたが、このための簡単なコード/ユーティリティコードは見つかりませんでした。したがって、どういうわけかJavaコードからlinux diff/sdiffコマンドを実行し、diffを格納するファイルを返すことができれば素晴らしいと思いました。

2つのファイルfileAとfileBがあるとします。 Javaコードを使用して、diffをfileDiffというファイルに保存できるはずです。その後、fileDiffからデータをフェッチすることは大したことではありません。

40
chitresh
24
mort

Java.lang.Runtime.exec 単純なコードを実行します。これにより、Processが返され、出力を一時的にディスクに保存することなく、標準出力を直接読み取ることができます。

たとえば、これを行う方法を紹介する完全なプログラムを次に示します。

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

public class testprog {
    public static void main(String args[]) {
        String s;
        Process p;
        try {
            p = Runtime.getRuntime().exec("ls -aF");
            BufferedReader br = new BufferedReader(
                new InputStreamReader(p.getInputStream()));
            while ((s = br.readLine()) != null)
                System.out.println("line: " + s);
            p.waitFor();
            System.out.println ("exit: " + p.exitValue());
            p.destroy();
        } catch (Exception e) {}
    }
}

コンパイルして実行すると、次を出力します。

line: ./
line: ../
line: .classpath*
line: .project*
line: bin/
line: src/
exit: 0

予想通り。

また、プロセス標準エラーの場合は error stream を取得でき、プロセス標準入力の場合は output stream を取得できます。このコンテキストでは、このプロセスへの入力from(つまり、標準 )outputプロセスの)。

プロセスの標準出力とエラーをJava(2>&1実際のコマンドで)、 ProcessBuilder を調べる必要があります。

46
paxdiablo

以下に示すように、シェルスクリプトファイルを記述し、Javaコードからそのファイルを呼び出すこともできます。

{
   Process proc = Runtime.getRuntime().exec("./your_script.sh");                        
   proc.waitFor();
}

スクリプトファイルにLinuxコマンドを記述します。実行が終了したら、Javaでdiffファイルを読み取ることができます。

このアプローチの利点は、Javaコードを変更せずにコマンドを変更できることです。

16
Naveen

Diffを3番目のファイルに保存してから読み込む必要はありません。代わりにRuntime.exec

Process p = Runtime.getRuntime().exec("diff fileA fileB");                                                                                                                                                     
BufferedReader stdInput = new BufferedReader(new InputStreamReader(p.getInputStream()));
while ((s = stdInput.readLine()) != null) {
        System.out.println(s);
}
12
codaddict

nix4j を使用してみてください。 JavaのLinuxコマンドを実行するためのライブラリについてです。たとえば、次のようなコマンドを取得した場合:cat test.txt | grep "Tuesday" | sed "s/kilogram/kg/g" |このプログラムのソートは次のようになります。Unix4j.cat( "test.txt")。grep( "Tuesday")。sed( "s/kilogram/kg/g")。sort();

6
b10n1k
Runtime run = Runtime.getRuntime();  
//The best possible I found is to construct a command which you want to execute  
//as a string and use that in exec. If the batch file takes command line arguments  
//the command can be constructed a array of strings and pass the array as input to  
//the exec method. The command can also be passed externally as input to the method.  

Process p = null;  
String cmd = "ls";  
try {  
    p = run.exec(cmd);  

    p.getErrorStream();  
    p.waitFor();

}  
catch (IOException e) {  
    e.printStackTrace();  
    System.out.println("ERROR.RUNNING.CMD");  

}finally{
    p.destroy();
}  
5
YoK

WindowsLinuxの両方に対してJavaから実行時コマンドを呼び出すことができます。

import Java.io.*;

public class Test{
   public static void main(String[] args) 
   {
            try
            { 
            Process process = Runtime.getRuntime().exec("pwd"); // for Linux
            //Process process = Runtime.getRuntime().exec("cmd /c dir"); //for Windows

            process.waitFor();
            BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
            String line;
               while ((line=reader.readLine())!=null)
               {
                System.out.println(line);   
                }
             }       
                catch(Exception e)
             { 
                 System.out.println(e); 
             }
             finally
             {
               process.destroy();
             }  
    }
}

それが役に立てば幸い.. :)

2
Sarat Chandra

推奨されるソリューションは、commons.ioを使用して、エラーストリームを処理し、例外を使用して最適化できます。 Java 8以降で使用するために、このようにラップすることをお勧めします。

public static List<String> execute(final String command) throws ExecutionFailedException, InterruptedException, IOException {
    try {
        return execute(command, 0, null, false);
    } catch (ExecutionTimeoutException e) { return null; } /* Impossible case! */
}

public static List<String> execute(final String command, final long timeout, final TimeUnit timeUnit) throws ExecutionFailedException, ExecutionTimeoutException, InterruptedException, IOException {
    return execute(command, 0, null, true);
}

public static List<String> execute(final String command, final long timeout, final TimeUnit timeUnit, boolean destroyOnTimeout) throws ExecutionFailedException, ExecutionTimeoutException, InterruptedException, IOException {
    Process process = new ProcessBuilder().command("bash", "-c", command).start();
    if(timeUnit != null) {
        if(process.waitFor(timeout, timeUnit)) {
            if(process.exitValue() == 0) {
                return IOUtils.readLines(process.getInputStream(), StandardCharsets.UTF_8);
            } else {
                throw new ExecutionFailedException("Execution failed: " + command, process.exitValue(), IOUtils.readLines(process.getInputStream(), StandardCharsets.UTF_8));
            }
        } else {
            if(destroyOnTimeout) process.destroy();
            throw new ExecutionTimeoutException("Execution timed out: " + command);
        }
    } else {
        if(process.waitFor() == 0) {
            return IOUtils.readLines(process.getInputStream(), StandardCharsets.UTF_8);
        } else {
            throw new ExecutionFailedException("Execution failed: " + command, process.exitValue(), IOUtils.readLines(process.getInputStream(), StandardCharsets.UTF_8));
        }
    }
}

public static class ExecutionFailedException extends Exception {

    private static final long serialVersionUID = 1951044996696304510L;

    private final int exitCode;
    private final List<String> errorOutput;

    public ExecutionFailedException(final String message, final int exitCode, final List<String> errorOutput) {
        super(message);
        this.exitCode = exitCode;
        this.errorOutput = errorOutput;
    }

    public int getExitCode() {
        return this.exitCode;
    }

    public List<String> getErrorOutput() {
        return this.errorOutput;
    }

}

public static class ExecutionTimeoutException extends Exception {

    private static final long serialVersionUID = 4428595769718054862L;

    public ExecutionTimeoutException(final String message) {
        super(message);
    }

}
1
Martin

窓の開口部の場合

try {
        //chm file address
        String chmFile = System.getProperty("user.dir") + "/chm/sample.chm";
        Desktop.getDesktop().open(new File(chmFile));
    } catch (IOException ex) {
        Logger.getLogger(Frame.class.getName()).log(Level.SEVERE, null, ex);
        {
            JOptionPane.showMessageDialog(null, "Terjadi Kesalahan", "Error", JOptionPane.WARNING_MESSAGE);
        }
    }
1
nugrahaTeten

Linuxコマンドの結果をもたらすJava関数!

public String RunLinuxCommand(String cmd) throws IOException {

    String linuxCommandResult = "";
    Process p = Runtime.getRuntime().exec(cmd);

    BufferedReader stdInput = new BufferedReader(new InputStreamReader(p.getInputStream()));

    BufferedReader stdError = new BufferedReader(new InputStreamReader(p.getErrorStream()));

    try {
        while ((linuxCommandResult = stdInput.readLine()) != null) {

            return linuxCommandResult;
        }
        while ((linuxCommandResult = stdError.readLine()) != null) {
            return "";
        }
    } catch (Exception e) {
        return "";
    }

    return linuxCommandResult;
}
0
Kailas Kakade