您好,登錄后才能下訂單哦!
這篇文章主要介紹了JSch怎么遠(yuǎn)程執(zhí)行Shell命令,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
JS是JavaScript的簡稱,它是一種直譯式的腳本語言,其解釋器被稱為JavaScript引擎,是瀏覽器的一部分,主要用于web的開發(fā),可以給網(wǎng)站添加各種各樣的動態(tài)效果,讓網(wǎng)頁更加美觀。
JSch 是Java Secure Channel的縮寫。JSch是一個(gè)SSH2的純Java實(shí)現(xiàn)。它允許你連接到一個(gè)SSH服務(wù)器,并且可以使用端口轉(zhuǎn)發(fā),X11轉(zhuǎn)發(fā),文件傳輸?shù)?,?dāng)然你也可以集成它的功能到你自己的應(yīng)用程序??蚣躩sch很老的框架,更新到2016年,現(xiàn)在也不更新了。
ChannelExec: 一次執(zhí)行一條命令,一般我們用這個(gè)就夠了。
ChannelShell: 可執(zhí)行多條命令,平時(shí)開發(fā)用的不多,根據(jù)需要來吧;
ChannelExec channelExec = (ChannelExec) session.openChannel("exec");//只能執(zhí)行一條指令(也可執(zhí)行符合指令) ChannelShell channelShell = (ChannelShell) session.openChannel("shell");//可執(zhí)行多條指令 不過需要輸入輸出流
每個(gè)命令之間用 ; 隔開。說明:各命令的執(zhí)行給果,不會影響其它命令的執(zhí)行。換句話說,各個(gè)命令都會執(zhí)行,但不保證每個(gè)命令都執(zhí)行成功。
每個(gè)命令之間用 && 隔開。說明:若前面的命令執(zhí)行成功,才會去執(zhí)行后面的命令。這樣可以保證所有的命令執(zhí)行完畢后,執(zhí)行過程都是成功的。
每個(gè)命令之間用 || 隔開。說明:|| 是或的意思,只有前面的命令執(zhí)行失敗后才去執(zhí)行下一條命令,直到執(zhí)行成功一條命令為止。
對于ChannelShell,以輸入流的形式,可執(zhí)行多條指令,這就像在本地計(jì)算機(jī)上使用交互式shell(它通常用于:交互式使用)。如要要想停止,有兩種方式:
發(fā)送一個(gè)exit命令,告訴程序本次交互結(jié)束;
使用字節(jié)流中的available方法,來獲取數(shù)據(jù)的總大小,然后循環(huán)去讀。
<dependency> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> <version>0.1.53</version> </dependency>
在此封裝了一個(gè) Shell 工具類,用來執(zhí)行 shell 命令,具體使用細(xì)節(jié)在代碼注釋中有說明,可以直接拷貝并使用,代碼如下:
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 方式執(zhí)行 shell 命令 channelExec = (ChannelExec) session.openChannel("exec"); channelExec.setCommand(cmd); channelExec.connect(); // 執(zhí)行命令 // 3. 獲取標(biāo)準(zhǔn)輸入流 inputStreamReader = new BufferedReader(new InputStreamReader(channelExec.getInputStream())); // 4. 獲取標(biāo)準(zhǔn)錯(cuò)誤輸入流 errInputStreamReader = new BufferedReader(new InputStreamReader(channelExec.getErrStream())); // 5. 記錄命令執(zhí)行 log String line = null; while ((line = inputStreamReader.readLine()) != null) { runLog.append(line).append("\n"); } // 6. 記錄命令執(zhí)行錯(cuò)誤 log String errLine = null; while ((errLine = errInputStreamReader.readLine()) != null) { errLog.append(errLine).append("\n"); } // 7. 輸出 shell 命令執(zhí)行日志 System.out.println("exitStatus=" + channelExec.getExitStatus() + ", openChannel.isClosed=" + channelExec.isClosed()); System.out.println("命令執(zhí)行完成,執(zhí)行日志如下:"); System.out.println(runLog.toString()); System.out.println("命令執(zhí)行完成,執(zhí)行錯(cuò)誤日志如下:"); 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); }}
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“JSch怎么遠(yuǎn)程執(zhí)行Shell命令”這篇文章對大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。