リダイレクション(>&)とパイプ(|)を使用して、JavaからLinuxコマンドを実行しようとしています。 Javaはcsh
またはbash
コマンドをどのように呼び出すことができますか?
私はこれを使用しようとしました:
Process p = Runtime.getRuntime().exec("Shell command");
ただし、リダイレクトやパイプとは互換性がありません。
execはシェルでコマンドを実行しません
試してみる
Process p = Runtime.getRuntime().exec(new String[]{"csh","-c","cat /home/narek/pk.txt"});
代わりに。
編集::システムにcshがないので、代わりにbashを使用しました。次は私のために働いた
Process p = Runtime.getRuntime().exec(new String[]{"bash","-c","ls /home/XXX"});
ProcessBuilderを使用して、スペースではなくコマンドと引数を区切ります。これは、使用されるシェルに関係なく機能するはずです。
import Java.io.BufferedReader;
import Java.io.File;
import Java.io.IOException;
import Java.io.InputStreamReader;
import Java.util.ArrayList;
import Java.util.List;
public class Test {
public static void main(final String[] args) throws IOException, InterruptedException {
//Build command
List<String> commands = new ArrayList<String>();
commands.add("/bin/cat");
//Add arguments
commands.add("/home/narek/pk.txt");
System.out.println(commands);
//Run macro on target
ProcessBuilder pb = new ProcessBuilder(commands);
pb.directory(new File("/home/narek"));
pb.redirectErrorStream(true);
Process process = pb.start();
//Read output
StringBuilder out = new StringBuilder();
BufferedReader br = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line = null, previous = null;
while ((line = br.readLine()) != null)
if (!line.equals(previous)) {
previous = line;
out.append(line).append('\n');
System.out.println(line);
}
//Check result
if (process.waitFor() == 0) {
System.out.println("Success!");
System.exit(0);
}
//Abnormal termination: Log command parameters and output and throw ExecutionException
System.err.println(commands);
System.err.println(out.toString());
System.exit(1);
}
}
@Timの例を基にして、自己完結型のメソッドを作成します。
import Java.io.BufferedReader;
import Java.io.File;
import Java.io.InputStreamReader;
import Java.util.ArrayList;
public class Shell {
/** Returns null if it failed for some reason.
*/
public static ArrayList<String> command(final String cmdline,
final String directory) {
try {
Process process =
new ProcessBuilder(new String[] {"bash", "-c", cmdline})
.redirectErrorStream(true)
.directory(new File(directory))
.start();
ArrayList<String> output = new ArrayList<String>();
BufferedReader br = new BufferedReader(
new InputStreamReader(process.getInputStream()));
String line = null;
while ( (line = br.readLine()) != null )
output.add(line);
//There should really be a timeout here.
if (0 != process.waitFor())
return null;
return output;
} catch (Exception e) {
//Warning: doing this is no good in high quality applications.
//Instead, present appropriate error messages to the user.
//But it's perfectly fine for prototyping.
return null;
}
}
public static void main(String[] args) {
test("which bash");
test("find . -type f -printf '%T@\\\\t%p\\\\n' "
+ "| sort -n | cut -f 2- | "
+ "sed -e 's/ /\\\\\\\\ /g' | xargs ls -halt");
}
static void test(String cmdline) {
ArrayList<String> output = command(cmdline, ".");
if (null == output)
System.out.println("\n\n\t\tCOMMAND FAILED: " + cmdline);
else
for (String line : output)
System.out.println(line);
}
}
(テスト例は、 ディレクトリとそのサブディレクトリ内のすべてのファイルを時系列順に再帰的にリストするコマンド です。)
ちなみに、2つと4つではなく、4つと8つのバックスラッシュが必要な理由を誰かが教えてくれれば、何かを学ぶことができます。私が数えているよりも、もう1つのレベルのアンエスケープが発生しています。
編集:Linux上でこの同じコードを試してみたところ、テストコマンドで必要なバックスラッシュの数が半分になっていることがわかりました! (つまり、予想される2と4の数です。)これはもはや奇妙ではなく、移植性の問題です。