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

java掉系統进程

时间:2018-04-01 16:09:19      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:runtime   进程   conf   highlight   class   scan   out   ann   catch   

 /**
         * 調系統命令
         */
        try {
            Process process =  Runtime.getRuntime().exec("ipconfig");

            Scanner scanner = new Scanner(process.getInputStream(),"gbk");
            while (scanner.hasNextLine()){
                String str = scanner.nextLine();
                System.out.println(str);
            }
            scanner.close();
        } catch (IOException e) {
            e.printStackTrace();
        }

  

java掉系統进程

标签:runtime   进程   conf   highlight   class   scan   out   ann   catch   

原文地址:https://www.cnblogs.com/fengdaren/p/8686753.html

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