java執行命令(cmd,shell)

來源:互聯網
上載者:User

一個簡單的小工具,用java執行系統命令,並列印輸出。

public class OSExecute<br />{<br />/**<br /> * <b>command。</b><br /> * <p><b>詳細說明:</b></p><br /> * <!-- 在此添加詳細說明 --><br /> * 無。<br /> * @param command<br /> */<br />public static void command(String command){<br />try<br />{<br />Process process=new ProcessBuilder(Arrays.asList(command.split(" "))).start();<br />//標準輸入資料流<br />BufferedReader result= new BufferedReader(new InputStreamReader(process.getInputStream()));<br />String s=result.readLine();<br />while(s!=null){<br />System.out.println(s);<br />s=result.readLine();<br />}<br />//標準錯誤輸入資料流<br />BufferedReader error = new BufferedReader(new InputStreamReader(process.getErrorStream()));<br />s=error.readLine();<br />while(s!=null){<br />System.err.println(s);<br />s=error.readLine();<br />}<br />} catch (Exception e)<br />{<br />//糾正<br />if(!command.startsWith("CMD /C")){<br />command("CMD /C "+command);<br />}else{<br />throw new RuntimeException(e.getMessage());<br />}<br />}<br />}<br />public static void main(String[] args) {<br />OSExecute.command("dir");<br />}<br />}

 

測試ls(windows下測試),命令的結果:

 磁碟機 E 中的卷是 Doc
 卷的序號是 B411-2480

 E:/workspace/java/ThinkInJava/book 的目錄

2010/12/28  20:30    <DIR>          .
2010/12/28  20:30    <DIR>          ..
2010/12/28  19:31               518 .classpath
2010/08/29  08:59               380 .project
2010/12/28  17:09    <DIR>          .settings
2010/12/28  19:57    <DIR>          bin
2010/12/28  20:32               100 data.txt
2010/08/29  09:02    <DIR>          source
2010/12/28  19:55    <DIR>          src
2010/08/29  09:14    <DIR>          test
               3 個檔案            998 位元組
               7 個目錄 13,018,263,552 可用位元組

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.