如何使用eclipse IDE从java程序运行sudo命令?

时间:2012-05-24 08:44:35

标签: java linux eclipse ubuntu

我想使用eclipse IDE从java prog运行sudo命令,但它没有运行,也没有要求输入密码,也没有在控制台中显示任何输出信息,请告诉我 我的编程是

public class JavaCommand {
    public static void main(String args[]) throws IOException, InterruptedException {
        String command="sudo cat /etc/sudoers";
        Process myProcess =null;
        try {
            Runtime runtime=Runtime.getRuntime();
            File file=new File("/home/users/admin/temp");
            myProcess = runtime.exec(command,null,file);
            myProcess.waitFor();
            InputStreamReader myIStreamReader = new InputStreamReader(myProcess.getInputStream());
            BufferedReader br=new BufferedReader(myIStreamReader);
            String line;
            while((line=br.readLine())!=null){
                System.out.println(line);
            }
        } catch (IOException anIOException) {
            System.out.println(anIOException);
        }
    }
}

1 个答案:

答案 0 :(得分:1)

Process.waitFor是阻止来电。

在执行myProcess.waitFor之前,您需要创建线程来处理程序i / o。