仅凭单,可使用> 定位。 Don tabes 定期操作updatedb
,但(最好自动)。
为在 Java实际指挥线,检查,该条。 基本指挥是<代码>Runtime#exec,但你希望做一些错误检查。 The snippet provided in the article is:
import java.io.*;
public class JavaRunCommand {
public static void main(String args[]) {
String s = null;
try {
// run the Unix "ps -ef" command
// using the Runtime exec method:
Process p = Runtime.getRuntime().exec("ps -ef");
BufferedReader stdInput = new BufferedReader(new
InputStreamReader(p.getInputStream()));
BufferedReader stdError = new BufferedReader(new
InputStreamReader(p.getErrorStream()));
// read the output from the command
System.out.println("Here is the standard output of the command:
");
while ((s = stdInput.readLine()) != null) {
System.out.println(s);
}
// read any errors from the attempted command
System.out.println("Here is the standard error of the command (if any):
");
while ((s = stdError.readLine()) != null) {
System.out.println(s);
}
System.exit(0);
}
catch (IOException e) {
System.out.println("exception happened - here s what I know: ");
e.printStackTrace();
System.exit(-1);
}
}
}
否则,请。 穿孔树: (Java原住民使用NIO.2)。 这可能需要更长的时间,但因为时间不够。