我正在尝试通过Java在linux中执行终端命令,我无法从inputStream获取任何输入。
这是我的代码
ProcessBuilder build = new ProcessBuilder("/usr/bin/xterm", "find /home");
Process pr = null;
BufferedReader buf;
try {
build.redirectErrorStream(true);
pr = build.start();
buf = new BufferedReader(new InputStreamReader( pr.getInputStream()));
String line = buf.readLine();
pr.waitFor();
while (true) {
System.out.println(line + "sadasdas");
line = buf.readLine();
}
} catch (Exception e) {
e.printStackTrace();
}
执行流程并立即关闭终端,并且不会捕获和打印任何输出。另一方面,如果我将编写一个未知的命令,我将获得有关如何使用命令的提示的所有行。与Windows cmd相同的问题。我试图使用getRuntime.exec(cmd)方法但结尾是一样的。
我还试图为进程和阅读器创建单独的线程,看起来像这样
public class kurdee
{
public static Thread thread;
public kurdee()
{
List cmd = new LinkedList();
cmd.add(new String("/usr/bin/xterm"));
cmd.add(new String("find"));
thisProc thispr = new thisProc(cmd);
this.thread = new Thread(thispr);
thread.start();
reader rd = new reader(thispr.proc);
Thread thread1 = new Thread(rd);
thread1.start();}
public static void main(String args[])
{
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
kurdee kurd = new kurdee();
}
});
}
}
class reader implements Runnable
{
private BufferedReader buf;
private Process proc;
public reader(Process proc)
{
this.proc=proc;
this.buf = new BufferedReader(new InputStreamReader(proc.getInputStream()));
}
public void run()
{
String line="";
System.out.println("Thread is alive");
try{
//Thread.sleep(1000);
line = buf.readLine();
}catch(Exception ex){System.out.println(ex + " before first while started");}
while(kurdee.thread.isAlive())
{
System.out.println("Thread is alive");
while(line!=null)
{
try{
//System.out.println(proc.exitValue());
System.out.println(line + " asd");
line=buf.readLine();
}catch(Exception e){System.out.println(e + " Inner while loop");}
}
}
}
}
class thisProc implements Runnable
{
private ProcessBuilder build;
public static Process proc=null;
public thisProc(List<String> args)
{
this.build = new ProcessBuilder(args);
build.redirectErrorStream(true);
try{
this.proc = build.start();
}catch(Exception ex){System.out.println(ex + " proc class");}
}
public void run()
{
try{
proc.waitFor();
}catch(Exception ex){System.out.println(ex + " proc class");}
}
}
但是使用调用线程等的任何组合,我仍然无需阅读。
我正在尝试使用命令“find / home -xdev -samefile file”获取文件的所有硬链接,所以可能有一种更简单的方法。
答案 0 :(得分:2)
xterm不是在unix中执行进程的方法,它不是shell。 shell就像“/ bin / sh”。但是,“find”是一个普通的unix可执行文件,所以你应该直接执行它,例如new ProcessBuilder("find", "/home")
。是的,您应该始终按照this article的建议在不同的线程上处理流。
答案 1 :(得分:1)
首先,不要尝试用xterm
执行命令,这是没有意义的;直接做吧。其次,在编写命令字符串数组时要小心,将一个单词放入每个字符串中;传递,例如“find / home”作为单个字符串中的许多ProcessBuilder
将会出错。