Java调用shell
try {
String commands = "ls -l";
Process process = Runtime.getRuntime().exec (commands);
// for showing the info on screen
InputStreamReader ir=new
InputStreamReader(process.getInputStream());
BufferedReader input = new BufferedReader (ir);
String line;
while ((line = input.readLine ()) != null){
System.out.println(line);
}//end try
}
catch (java.io.IOException e){
System.err.println ("IOException " + e.getMessage());
}
posted on 2016-01-26 15:16 1130136248 阅读(90) 评论(0) 收藏 举报
浙公网安备 33010602011771号