1

以下のコマンドを Java プログラムから送信したいのですが、応答を読むことについてあまり気にしません。どうすればこれを行うことができますか

以下のコマンドは、CECコマンドを介してテレビを回転させます

echo "standby 0000" | cec-client -d 1 -s "standby 0" RPI

以下のコードのようなものを探していますが、上記のコマンドをどのように適合させることができるかわかりません

ProcessBuilder builder = new ProcessBuilder("ls", "-l"); // or whatever your command is
builder.redirectErrorStream(true);
Process proc = builder.start();
4

2 に答える 2

2

これを試して

ProcessBuilder processBuilder = 
  new ProcessBuilder("bash", "-c", "echo \"standby 0000\" | cec-client -d 1 -s \"standby 0\" RPI");
Process process = processBuilder.start();

パイプ演算子|はコマンド シェルによって解釈されるため、bash使用されます

于 2013-09-19T20:45:21.373 に答える
1

このようなものはどうですか:

import java.io.*;

public class SendCommandToTV {

    public static void main(String args[]) {

        String s = null;

        try {

        Process p = Runtime.getRuntime().exec("echo \"standby 0000\" | cec-client -d 1 -s \"standby 0\" RPI");

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

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

            // read the output from the command
            System.out.println("Here is the standard output of the command:\n");
            while ((s = stdInput.readLine()) != null) {
                System.out.println(s);
            }

            // read any errors from the attempted command
            System.out.println("Here is the standard error of the command (if any):\n");
            while ((s = stdError.readLine()) != null) {
                System.out.println(s);
            }

            System.exit(0);
        }
        catch (IOException e) {
            e.printStackTrace();
            System.exit(-1);
        }
    }
}
于 2013-09-19T20:46:26.910 に答える