次のクラスがあります。 Javaを介してコマンドを実行できます。
public class ExecuteShellCommand {
public String executeCommand(String command) {
StringBuffer output = new StringBuffer();
Process p;
try {
p = Runtime.getRuntime().exec(command);
p.waitFor();
BufferedReader reader =
new BufferedReader(new InputStreamReader(p.getInputStream()));
String line = "";
while ((line = reader.readLine())!= null) {
output.append(line + "\n");
}
} catch (Exception e) {
e.printStackTrace();
}
return output.toString();
}
}
コマンドを実行すると、前のコマンドの結果は保存されません。例えば:
public static void main(String args[]) {
ExecuteShellCommand com = new ExecuteShellCommand();
System.out.println(com.executeCommand("ls"));
System.out.println(com.executeCommand("cd bin"));
System.out.println(com.executeCommand("ls"));
}
出力を与えます:
bin
src
bin
src
2番目の「ls」コマンドで「bin」ディレクトリの内容が表示されないのはなぜですか?
Runtime.exec(command)
で新しいプロセスを開始します。各プロセスには作業ディレクトリがあります。これは通常、親プロセスが開始されたディレクトリですが、プロセスが開始されたディレクトリを変更できます。
ProcessBuilder を使用することをお勧めします
ProcessBuilder pb = new ProcessBuilder("ls");
pb.inheritIO();
pb.directory(new File("bin"));
pb.start();
シェルで複数のコマンドを実行する場合は、一時的なシェルスクリプトを作成して実行することをお勧めします。
public void executeCommands() throws IOException {
File tempScript = createTempScript();
try {
ProcessBuilder pb = new ProcessBuilder("bash", tempScript.toString());
pb.inheritIO();
Process process = pb.start();
process.waitFor();
} finally {
tempScript.delete();
}
}
public File createTempScript() throws IOException {
File tempScript = File.createTempFile("script", null);
Writer streamWriter = new OutputStreamWriter(new FileOutputStream(
tempScript));
PrintWriter printWriter = new PrintWriter(streamWriter);
printWriter.println("#!/bin/bash");
printWriter.println("cd bin");
printWriter.println("ls");
printWriter.close();
return tempScript;
}
もちろん、システムで他のスクリプトを使用することもできます。実行時にスクリプトを生成することは、理にかなっている場合があります。実行されるコマンドを変更する必要がある場合。ただし、実行時に動的に生成するのではなく、引数で呼び出すことができるスクリプトを最初に作成する必要があります。
スクリプト生成が複雑な場合は、velocityなどのテンプレートエンジンを使用することも合理的です。
「ls; cd bin; ls」のすべてを実行する1つの複雑なbashコマンドを作成できます。これを機能させるには、bashを明示的に呼び出す必要があります。このアプローチにより、bashコマンドラインのすべての機能(引用符の処理、$の拡張、パイプなど)が得られます。
/**
* Execute a bash command. We can handle complex bash commands including
* multiple executions (; | && ||), quotes, expansions ($), escapes (\), e.g.:
* "cd /abc/def; mv ghi 'older ghi '$(whoami)"
* @param command
* @return true if bash got started, but your command may have failed.
*/
public static boolean executeBashCommand(String command) {
boolean success = false;
System.out.println("Executing BASH command:\n " + command);
Runtime r = Runtime.getRuntime();
// Use bash -c so we can handle things like multi commands separated by ; and
// things like quotes, $, |, and \. My tests show that command comes as
// one argument to bash, so we do not need to quote it to make it one thing.
// Also, exec may object if it does not have an executable file as the first thing,
// so having bash here makes it happy provided bash is installed and in path.
String[] commands = {"bash", "-c", command};
try {
Process p = r.exec(commands);
p.waitFor();
BufferedReader b = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line = "";
while ((line = b.readLine()) != null) {
System.out.println(line);
}
b.close();
success = true;
} catch (Exception e) {
System.err.println("Failed to execute bash with command: " + command);
e.printStackTrace();
}
return success;
}
各呼び出しは、独自のシェルで実行されます。したがって、2番目の呼び出しの「cd」は3番目の呼び出しには表示されません。
参照: https://docs.Oracle.com/javase/7/docs/api/Java/lang/Runtime.html#exec(Java.lang.String) .
これは、コマンドが別のプロセスで実行されることを示しています。したがって、3つのプロセスが生成されました。
3つすべてを同じプロセスで使用する場合は、これを試してください。
com.executeCommand("ls; cd bin; ls");
実行している各コマンドには独自のbashシェルがあるため、そのディレクトリにcdし、次のコマンドのために新しいbashシェルを開いています
コマンドを変更してみてください
ls bin
各コマンドは個別に実行されます。彼らは文脈を共有しません。
以下の方法のように、bashコマンド「pmset -g batt」を使用できます。
public int getPercentage() {
Process process = null;
try {
process = Runtime.getRuntime().exec("pmset -g batt");
} catch (IOException e) {
e.printStackTrace();
}
BufferedReader reader = new BufferedReader(new InputStreamReader(
process.getInputStream()));
String s = null;
String y = "";
while (true) {
try {
if (!((s = reader.readLine()) != null)) break;
} catch (IOException e) {
e.printStackTrace();
}
y += s;
System.out.println("Script output: " + s);
}
return Integer.parseInt(y.substring(y.indexOf(')') + 2, y.indexOf('%')));
}
将来の参照用:サブディレクトリでcdの後にbashコマンドを実行します:
import Java.io.BufferedReader;
import Java.io.InputStreamReader;
/*
$ ( D=somewhere/else ; mkdir -p $D ; cd $D ; touch file1 file2 ; )
$ javac BashCdTest.Java && Java BashCdTest
.. stdout: -rw-r--r-- 1 ubuntu ubuntu 0 Dec 28 12:47 file1
.. stdout: -rw-r--r-- 1 ubuntu ubuntu 0 Dec 28 12:47 file2
.. stderr: /bin/ls: cannot access isnt_there: No such file or directory
.. exit code:2
*/
class BashCdTest
{
static void execCommand(String[] commandArr)
{
String line;
try
{
Process p = Runtime.getRuntime().exec(commandArr);
BufferedReader stdoutReader = new BufferedReader(new InputStreamReader(p.getInputStream()));
while ((line = stdoutReader.readLine()) != null) {
// process procs standard output here
System.out.println(" .. stdout: "+line);
}
BufferedReader stderrReader = new BufferedReader(new InputStreamReader(p.getErrorStream()));
while ((line = stderrReader.readLine()) != null) {
// process procs standard error here
System.err.println(" .. stderr: "+line);
}
int retValue = p.waitFor();
System.out.println(" .. exit code:"+Integer.toString(retValue));
}
catch(Exception e)
{ System.err.println(e.toString()); }
}
public static void main(String[] args)
{
String flist = "file1 file2 isnt_there";
String outputDir = "./somewhere/else";
String[] cmd = {
"/bin/bash", "-c",
"cd "+outputDir+" && /bin/ls -l "+flist+" && /bin/rm "+flist
};
execCommand(cmd);
}
}