linux命令没有在Java应用程序中运行

时间:2012-09-26 11:19:51

标签: java linux unix

  

可能重复:
  How to use Pipe Symbol in Java

您好我想通过我的Java应用程序运行一些linux命令。当我运行下面的命令既没有抛出异常也没有输出。但是当我从linux命令提示符运行时,该特定命令正确执行。当我通过java应用程序给出“ls -al”命令时,它正常工作。那么如何让它发挥作用呢?

以下是命令。

String cmd = "dir | grep gpc | grep -v 25";

以下是我的java程序

public class Test {

    public static void main(String[] args) {





        //String cmd = "ls -al";





        String cmd ="dir | grep gpc | grep -v 25" ;

        String property = System.getProperty("user.dir");
        System.out.println("current directory:::: "+property);
        String cmd =property+File.separator+"test1.sh" ;*/

        //String cmd ="ls -al" ;
        //String cmd = args[0];

        String cmd = dir | grep gpc | grep -v 25;
        System.out.println("executing command is:: "+cmd);
        //String cmd ="dir | grep gpc | grep -v 25" ;
        Runtime run = Runtime.getRuntime();
        Process pr = null;
        try {
            pr = run.exec(cmd);
        } catch (IOException e) {
            e.printStackTrace();
        }
        try {
            pr.waitFor();
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        BufferedReader buf = new BufferedReader(new InputStreamReader(
                pr.getInputStream()));
        String line = "";
        try {
            while ((line = buf.readLine()) != null) {

                System.out.println(line);

            }
        } catch (IOException e) {
            e.printStackTrace();
        }

    }

}

2 个答案:

答案 0 :(得分:2)

sh -c前加上它可以解决您的问题。管道是一个shell功能。

答案 1 :(得分:0)

我得到了答案。需要以下列方式给出。

String[] cmd = {
"/bin/sh",
"-c",
"dir | grep gpc | grep -v 25"
};

Process p = Runtime.getRuntime().exec(cmd);