Java 呼叫第3方系統服務
阿新 • • 發佈:2019-03-04
Java 呼叫windows 或 shell指令碼服務
package com.zhiwei.basic; import java.io.BufferedInputStream; import java.io.IOException; import java.io.InputStream; /**java呼叫windows本地命令*/ public class DosOperation { public static void main(String[] args) { InputStream is=null; BufferedInputStream bis=null; Process process=null; /**命令引數*/ String[] cmd=new String[]{"cmd.exe","/c","dir"}; try{ process=Runtime.getRuntime().exec(cmd); is=process.getInputStream(); bis=new BufferedInputStream(is); byte[] buf=new byte[1024]; while((bis.read(buf))!=-1){ System.out.println(new String(buf,"GBK")); } int exitValue=process.waitFor(); System.out.println("返回值:"+exitValue); }catch (Exception e) { e.printStackTrace(); }finally { try { if(bis!=null){ bis.close(); } if(process!=null){ process.getOutputStream().close(); } } catch (IOException e) { e.printStackTrace(); } } } }
###結果:
--------------------------------------------------------------------------
驅動器 E 中的卷是 Entainment
卷的序列號是 000B-75D9
E:\JavaProject\JavaPro 的目錄
2016/11/28 11:07 <DIR> .
2016/11/28 11:07 <DIR> ..
2016/11/28 10:36 1,759 .classpath
2016/05/25 14:22 383 .project
2016/09/26 23:45 <DIR> .settings
2016/12/05 10:57 <DIR> bin
2016/11/24 11:42 <DIR> lib
2016/11/28 12:10 <DIR> src
2 個檔案 2,142 位元組
6 個目錄 145,481,375,744 可用位元組