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

溫馨提示×

溫馨提示×

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

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

JSch怎么遠程執行Shell命令

發布時間:2021-04-23 10:05:07 來源:億速云 閱讀:475 作者:小新 欄目:編程語言

這篇文章主要介紹了JSch怎么遠程執行Shell命令,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

JS是什么

JS是JavaScript的簡稱,它是一種直譯式的腳本語言,其解釋器被稱為JavaScript引擎,是瀏覽器的一部分,主要用于web的開發,可以給網站添加各種各樣的動態效果,讓網頁更加美觀。

JSch 是Java Secure Channel的縮寫。JSch是一個SSH2的純Java實現。它允許你連接到一個SSH服務器,并且可以使用端口轉發,X11轉發,文件傳輸等,當然你也可以集成它的功能到你自己的應用程序。框架jsch很老的框架,更新到2016年,現在也不更新了。

JSch 使用 shell 執行命令,有兩種方法

  • ChannelExec: 一次執行一條命令,一般我們用這個就夠了。

  • ChannelShell: 可執行多條命令,平時開發用的不多,根據需要來吧;

ChannelExec channelExec = (ChannelExec) session.openChannel("exec");//只能執行一條指令(也可執行符合指令)
ChannelShell channelShell = (ChannelShell) session.openChannel("shell");//可執行多條指令 不過需要輸入輸出流
1. ChannelExec
  • 每個命令之間用 ; 隔開。說明:各命令的執行給果,不會影響其它命令的執行。換句話說,各個命令都會執行,但不保證每個命令都執行成功。

  • 每個命令之間用 && 隔開。說明:若前面的命令執行成功,才會去執行后面的命令。這樣可以保證所有的命令執行完畢后,執行過程都是成功的。

  • 每個命令之間用 || 隔開。說明:|| 是或的意思,只有前面的命令執行失敗后才去執行下一條命令,直到執行成功一條命令為止。

2. ChannelShell

對于ChannelShell,以輸入流的形式,可執行多條指令,這就像在本地計算機上使用交互式shell(它通常用于:交互式使用)。如要要想停止,有兩種方式:

  • 發送一個exit命令,告訴程序本次交互結束;

  • 使用字節流中的available方法,來獲取數據的總大小,然后循環去讀。

使用示例

1. 引入 pom 依賴
<dependency>
   <groupId>com.jcraft</groupId>
   <artifactId>jsch</artifactId>
   <version>0.1.53</version>
</dependency>
2. jsch 使用示例

在此封裝了一個 Shell 工具類,用來執行 shell 命令,具體使用細節在代碼注釋中有說明,可以直接拷貝并使用,代碼如下:

package org.example.shell;/**
 * Created by qianghaohao on 2021/3/28
 */import com.jcraft.jsch.ChannelExec;import com.jcraft.jsch.JSch;import com.jcraft.jsch.Session;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;/**
 * @description:
 * @author: qianghaohao
 * @time: 2021/3/28
 */public class Shell {
    private String host;
    private String username;
    private String password;
    private int port = 22;
    private int timeout = 60 * 60 * 1000;

    public Shell(String host, String username, String password, int port, int timeout) {
        this.host = host;
        this.username = username;
        this.password = password;
        this.port = port;
        this.timeout = timeout;
    }

    public Shell(String host, String username, String password) {
        this.host = host;
        this.username = username;
        this.password = password;
    }

    public String execCommand(String cmd) {
        JSch jSch = new JSch();
        Session session = null;
        ChannelExec channelExec = null;
        BufferedReader inputStreamReader = null;
        BufferedReader errInputStreamReader = null;
        StringBuilder runLog = new StringBuilder("");
        StringBuilder errLog = new StringBuilder("");
        try {
            // 1. 獲取 ssh session
            session = jSch.getSession(username, host, port);
            session.setPassword(password);
            session.setTimeout(timeout);
            session.setConfig("StrictHostKeyChecking", "no");
            session.connect();  // 獲取到 ssh session

            // 2. 通過 exec 方式執行 shell 命令
            channelExec = (ChannelExec) session.openChannel("exec");
            channelExec.setCommand(cmd);
            channelExec.connect();  // 執行命令

            // 3. 獲取標準輸入流
            inputStreamReader = new BufferedReader(new InputStreamReader(channelExec.getInputStream()));
            // 4. 獲取標準錯誤輸入流
            errInputStreamReader = new BufferedReader(new InputStreamReader(channelExec.getErrStream()));

            // 5. 記錄命令執行 log
            String line = null;
            while ((line = inputStreamReader.readLine()) != null) {
                runLog.append(line).append("\n");
            }

            // 6. 記錄命令執行錯誤 log
            String errLine = null;
            while ((errLine = errInputStreamReader.readLine()) != null) {
                errLog.append(errLine).append("\n");
            }

            // 7. 輸出 shell 命令執行日志
            System.out.println("exitStatus=" + channelExec.getExitStatus() + ", openChannel.isClosed="
                    + channelExec.isClosed());
            System.out.println("命令執行完成,執行日志如下:");
            System.out.println(runLog.toString());
            System.out.println("命令執行完成,執行錯誤日志如下:");
            System.out.println(errLog.toString());
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if (inputStreamReader != null) {
                    inputStreamReader.close();
                }
                if (errInputStreamReader != null) {
                    errInputStreamReader.close();
                }

                if (channelExec != null) {
                    channelExec.disconnect();
                }
                if (session != null) {
                    session.disconnect();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

        return runLog.toString();
    }}

上述工具類使用:

package org.example;import org.example.shell.Shell;/**
 * Hello world!
 *
 */public class App {
    public static void main( String[] args ) {
        String cmd = "ls -1";
        Shell shell = new Shell("192.168.10.10", "ubuntu", "11111");
        String execLog = shell.execCommand(cmd);
        System.out.println(execLog);
    }}

感謝你能夠認真閱讀完這篇文章,希望小編分享的“JSch怎么遠程執行Shell命令”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

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

AI

公主岭市| 泗洪县| 大安市| 太康县| 微博| 格尔木市| 安国市| 孟连| 宝鸡市| 渝中区| 商水县| 彭水| 定安县| 义乌市| 贵港市| 饶阳县| 兴山县| 察哈| 普陀区| 龙里县| 元江| 铅山县| 浠水县| 科技| 历史| 桐乡市| 缙云县| 灵宝市| 莱西市| 枣阳市| 旌德县| 文水县| 乌鲁木齐市| 佛山市| 东丰县| 西吉县| 新竹市| 平遥县| 清镇市| 庆城县| 赤城县|