溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java如何執(zhí)行cmd命令

發(fā)布時間:2020-07-30 10:11:05 來源:億速云 閱讀:241 作者:小豬 欄目:開發(fā)技術(shù)

這篇文章主要講解了Java如何執(zhí)行cmd命令,內(nèi)容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

一般java在執(zhí)行CMD命令時,通常是使用Runtime.getRuntime.exec(command)來執(zhí)行的,這個方法有兩種細節(jié)要注意:

1.一般執(zhí)行方法,代碼如下,這種方法有時執(zhí)行exe時會卡在那里。

//一般的執(zhí)行方法,有時執(zhí)行exe會卡在那  stmt要執(zhí)行的命令
  public static void executive(String stmt) throws IOException, InterruptedException {
    Runtime runtime = Runtime.getRuntime(); //獲取Runtime實例
    //執(zhí)行命令
    try {
      String[] command = {"cmd", "/c", stmt};
      Process process = runtime.exec(command);
      // 標準輸入流(必須寫在 waitFor 之前)
      String inStr = consumeInputStream(process.getInputStream());
      // 標準錯誤流(必須寫在 waitFor 之前)
      String errStr = consumeInputStream(process.getErrorStream());
      new ProcessClearStream(process.getInputStream(), "INFO").start();
      new ProcessClearStream(process.getErrorStream(), "ERROR").start();
      int proc = process.waitFor();
      InputStream errorStream = process.getErrorStream(); //若有錯誤信息則輸出
      if (proc == 0) {
        System.out.println("執(zhí)行成功");
      } else {
        System.out.println("執(zhí)行失敗" + errStr);
      }
    } catch (IOException | InterruptedException e) {
      e.printStackTrace();
    }
  }

  /**
   * 消費inputstream,并返回
   */
  public static String consumeInputStream(InputStream is) throws IOException {
    BufferedReader br = new BufferedReader(new InputStreamReader(is,"GBK"));
    String s;
    StringBuilder sb = new StringBuilder();
    while ((s = br.readLine()) != null) {
      System.out.println(s);
      sb.append(s);
    }
    return sb.toString();
  }

2.第二種方法是先生成一個緩存文件,用來緩存執(zhí)行過程中輸出的信息,這樣在執(zhí)行命令的時候不會卡。代碼如下:

//這個方法比第一個好,執(zhí)行時不會卡 stmt要執(zhí)行的命令
  public static void aaa(String stam){
    BufferedReader br = null;
    try {
      File file = new File("D:\\daemonTmp");
      File tmpFile = new File("D:\\daemonTmp\\temp.tmp");//新建一個用來存儲結(jié)果的緩存文件
      if (!file.exists()){
        file.mkdirs();
      }
      if(!tmpFile.exists()) {
        tmpFile.createNewFile();
      }
      ProcessBuilder pb = new ProcessBuilder().command("cmd.exe", "/c", stam).inheritIO();
      pb.redirectErrorStream(true);//這里是把控制臺中的紅字變成了黑字,用通常的方法其實獲取不到,控制臺的結(jié)果是pb.start()方法內(nèi)部輸出的。
      pb.redirectOutput(tmpFile);//把執(zhí)行結(jié)果輸出。
      pb.start().waitFor();//等待語句執(zhí)行完成,否則可能會讀不到結(jié)果。
      InputStream in = new FileInputStream(tmpFile);
      br= new BufferedReader(new InputStreamReader(in));
      String line = null;
      while((line = br.readLine()) != null) {
        System.out.println(line);
      }
      br.close();
      br = null;
      tmpFile.delete();//卸磨殺驢。
      System.out.println("執(zhí)行完成");
    } catch (Exception e) {
      e.printStackTrace();
    } finally {
      if(br != null) {
        try {
          br.close();
        } catch (IOException e) {
          e.printStackTrace();
        }
      }
    }
  }

看完上述內(nèi)容,是不是對Java如何執(zhí)行cmd命令有進一步的了解,如果還想學習更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI