中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

如何通過Java實現bash命令過程解析

發布時間:2021-09-27 09:29:38 來源:億速云 閱讀:170 作者:小新 欄目:編程語言

小編給大家分享一下如何通過Java實現bash命令過程解析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

1、BASH 命令簡介

Bash,Unix shell的一種,在1987年由布萊恩·福克斯為了GNU計劃而編寫。1989年發布第一個正式版本,原先是計劃用在GNU操作系統上,但能運行于大多數類Unix系統的操作系統之上,包括Linux與Mac OS X v10.4都將它作為默認shell。

Bash是Bourne shell的后繼兼容版本與開放源代碼版本,它的名稱來自Bourne shell(sh)的一個雙關語(Bourne again/ born again):Bourne-AgainSHell。

Bash是一個命令處理器,通常運行于文本窗口中,并能執行用戶直接輸入的命令。Bash還能從文件中讀取命令,這樣的文件稱為腳本。和其他Unix shell 一樣,它支持文件名替換(通配符匹配)、管道、here文檔、命令替換、變量,以及條件判斷和循環遍歷的結構控制語句。包括關鍵字、語法在內的基本特性全部是從sh借鑒過來的。其他特性,例如歷史命令,是從csh和ksh借鑒而來。總的來說,Bash雖然是一個滿足POSIX規范的shell,但有很多擴展。

2、Java實現 BASH命令執行Shell腳本

1)代碼實現如下:

import ch.ethz.ssh3.Connection;import ch.ethz.ssh3.Session;import ch.ethz.ssh3.StreamGobbler;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import java.io.BufferedReader;import java.io.InputStream;import java.io.InputStreamReader;import java.util.ArrayList;import java.util.List;public class BashUtil {  private Logger logger = LoggerFactory.getLogger(BashUtil.class);  private String hostname;  private String username;  private String password;  private int port;  private Connection conn;  private BashUtil() {  }  public BashUtil(String hostname, String username, String password) {    this(hostname, username, password, 22);  }  public BashUtil(String hostname, String username, String password, Integer port) {    this.hostname = hostname;    this.username = username;    this.password = password;    if (port == null) {      port = 22;    } else {      this.port = port;    }  }  /**   * 創建連接并認證   * @return   */  public Boolean connection() {    try {      conn = new Connection(hostname, port);      conn.connect();      boolean isAuthenticated = conn.authenticateWithPassword(username, password);      return isAuthenticated;    } catch (Exception e) {      e.printStackTrace();      return false;    }  }  /**   * 關閉連接   */  public void close() {    try {      conn.close();      conn = null;    } catch (Exception e) {      e.printStackTrace();    }  }  /**   * 執行shell命令   * @param command   * @return   */  public List<String> command(String command) {    if (conn == null && !connection()) {      logger.error("Authentication failed.");      return null;    }    List<String> result = new ArrayList<String>();    try {      Session sess = conn.openSession();      sess.execCommand(command);      InputStream stdout = new StreamGobbler(sess.getStdout());      InputStream stderr = new StreamGobbler(sess.getStderr());      BufferedReader br_out = new BufferedReader(new InputStreamReader(stdout, "utf-8"));      BufferedReader br_err = new BufferedReader(new InputStreamReader(stderr, "utf-8"));      StringBuffer sb_err = new StringBuffer();      String line = null;      while ((line = br_out.readLine()) != null) {        result.add(line.trim());      }      while ((line = br_err.readLine()) != null) {        sb_err.append(line + "\n");      }      if (isNotEmpty(sb_err.toString())) {        logger.error(sb_err.toString());        return null;      }      return result;    } catch (Exception e) {      e.printStackTrace();    }    return null;  }  private static boolean isEmpty(String content) {    if (content == null) {      return true;    } else {      return "".equals(content.trim()) || "null".equalsIgnoreCase(content.trim());    }  }  private static boolean isNotEmpty(String content) {    return !isEmpty(content);  }  public static void main(String[] args){    String hostname = "192.168.123.234";  // 此處根據實際情況,換成自己需要訪問的主機IP    String userName = "root";    String password = "password";    Integer port = 22;    String command = "cd /home/miracle&&pwd&&ls&&cat luna.txt";    BashUtil bashUtil = new BashUtil(hostname, userName, password, port);    List<String> resultList = bashUtil.command(command);    StringBuffer result = new StringBuffer("");    resultList.forEach(str -> result.append(str + "\n"));    System.out.println("執行的結果如下: \n" + result.toString());  }}

2)執行結果如下:

執行的結果如下:/home/miracleluna.txtHello, I'm SshUtil.Nice to meet you.^_^

3)pom.xml引用依賴包如下:

<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->    <dependency>      <groupId>org.slf4j</groupId>      <artifactId>slf4j-api</artifactId>      <version>1.7.21</version>    </dependency>    <!-- ssh -->    <dependency>      <groupId>ch.ethz.ganymed</groupId>      <artifactId>ganymed-ssh3</artifactId>      <version>262</version>    </dependency>

以上是“如何通過Java實現bash命令過程解析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

民乐县| 横峰县| 潼关县| 广宗县| 宣城市| 鱼台县| 乐安县| 瓮安县| 兴化市| 陵川县| 通海县| 家居| 兴业县| 新安县| 库车县| 铜川市| 德州市| 洛浦县| 公主岭市| 汝南县| 大关县| 定日县| 沙湾县| 临城县| 历史| 迭部县| 贵州省| 吉木乃县| 山东| 莫力| 扶绥县| 长宁县| 海安县| 油尖旺区| 西畴县| 苏州市| 阿坝| 清丰县| 梅河口市| 古浪县| 漠河县|