java串連ssh執行shell指令碼

來源:互聯網
上載者:User

標籤:shel   script   stack   void   obb   array   connect   user   host   

在liunx上寫了一個shell指令碼,想通過java去調用這個shell指令碼,不知道怎麼去調用,在網上說使用process這個進程方式,但是我執行機和我shell指令碼都不在同一台電腦,老大說java中可以串連ssh,執行shell指令碼,以下代碼來自他們以前的項目

public class SSH {static Connection conn = null;static String hostname = "10.40.6.232";static String username = "root";static String password = "zhou123";static int port = 36000;public static void connect()throws IOException {try {conn = new Connection(hostname,port);conn.connect();conn.authenticateWithPassword(username, password);} catch (Exception e) {System.out.println("?????");System.out.println("" + e);}}@SuppressWarnings("resource")public static String execCommand(String command) throws IOException {connect();Session session = conn.openSession(); session.execCommand(command); StreamGobbler stdout = new StreamGobbler(session.getStdout());  BufferedReader br = new BufferedReader(new InputStreamReader((stdout),"UTF-8"));String line = "";while ((line = br.readLine()) != null) {System.out.println(line);}session.close();return line;}@SuppressWarnings("resource")public static ArrayList<String> execCommandd(String command)throws IOException {connect();Session session = conn.openSession();session.execCommand(command);ArrayList<String> array_result = new ArrayList<String>();StreamGobbler stdout = new StreamGobbler(session.getStdout());BufferedReader br = new BufferedReader(new InputStreamReader((stdout),"UTF-8"));String line;while ((line = br.readLine()) != null) {array_result.add(line);}session.close();return array_result;}public static void main(String[] args) {try {// System.out.println( execCommandd("uname -s -r -v"));System.out.println( execCommandd("pwd"));//使用的sh方式執行System.out.println( execCommandd("sh /script/test3.sh"));//使用的sh方式執行} catch (IOException e) {e.printStackTrace();}}

 

  需要注意,在執行shell指令碼時,正常這樣就可以實現了

但是你會發現你在代碼中這樣寫,會告訴你串連失敗,正常寫法是 sh /目錄下你的shell指令碼,這個也是讓我糾結了很久,因為像正常的pwd命令他是可以正常執行,但是一旦是其他就不能執行,就必須要使用sh

 

java串連ssh執行shell指令碼

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.