码迷,mamicode.com
首页 > 编程语言 > 详细

java如何运行OS命令(转)

时间:2015-02-02 13:54:50      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

 

  • javac TestRunTime.java
  • java TestRunTime hostname // 执行“hostname”Linux命令
  • 即可看到输出

 

 

 

public class TestRunTime {
 
    public static void main(String[] args) throws IOException, InterruptedException {
        String cmd = "";
        
        if(args == null || args.length == 0){
            System.out.println("请输入命令行参数");
        }else{
            
            for(int i=0;i<args.length; i++){
                cmd += args[i] + " ";
            }
        }
        
 
        try {
            Process process = Runtime.getRuntime().exec(cmd);
 
            InputStreamReader ir = new InputStreamReader(process.getInputStream());
            LineNumberReader input = new LineNumberReader(ir);
 
            String line;
            while ((line = input.readLine()) != null) {
                System.out.println(line);
            }
        } catch (java.io.IOException e) {
            System.err.println("IOException " + e.getMessage());
        }
    }
}

http://www.cnblogs.com/alipayhutu/archive/2012/06/12/2546214.html



java如何运行OS命令(转)

标签:

原文地址:http://www.cnblogs.com/softidea/p/4267575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!