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

java使用RunTime调用windows命令行

时间:2016-12-07 13:18:08      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:close   端口   windows系统   ade   comm   window   nbsp   ges   操作   

当Java需要调用windows系统进行交互时,可以使用Runtime进行操作。

例子:

1、调用window中获取关于java相关的进行信息

        Runtime rt = Runtime.getRuntime();
        Process p = rt.exec("wmic process where caption=\"javaw.exe\" get caption,commandline /value");
        BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()));
        String line = null;
        while((line=br.readLine())!=null){
            System.out.println(new String(line.getBytes(), "GBK"));
        }
        br.close();
        System.out.println("over");

显示结果如下:

技术分享

 

2、在java中查询windows中端口 :80

        Runtime rt = Runtime.getRuntime();
        Process p = rt.exec("cmd /k netstat -an | findstr :80"); // OK
        
        BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()));
        String line = null;
        while((line=br.readLine())!=null){
            System.out.println(new String(line.getBytes(), "GBK"));
        }
        br.close();
        System.out.println("over");

结果为:

技术分享

3、执行bat文件

Runtime rt = Runtime.getRuntime();
rt.exec("cmd /k start d:/Run/hello.bat");

注意:在编写的简单的bat,可以按照上述方式执行,但是:当hello需要依赖外部环境变量时不行

比如我需要启动tomcat来发布一个web

rt.exec("cmd /k start d:/Run/Tomcat/bin/startup.bat");//会报错
// 当使用exec需要执行多条命令时,使用&&进行拼接
rt.exec("cmd /k d: && cd d:/Run/Tomcat/bin && startup.bat");//OK
cmd /c dir 是执行完dir命令后关闭命令窗口。
cmd /k dir 是执行完dir命令后不关闭命令窗口。
cmd /c start dir 会打开一个新窗口后执行dir指令,原窗口会关闭。
cmd /k start dir 会打开一个新窗口后执行dir指令,原窗口不会关闭。

 

java使用RunTime调用windows命令行

标签:close   端口   windows系统   ade   comm   window   nbsp   ges   操作   

原文地址:http://www.cnblogs.com/TheoryDance/p/6140616.html

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