Java操做Linuxshell而且獲取返回值

/**
*
*/
package com.king.weixin.util;
import java.io.BufferedReader;
import java.io.InputStream;
/**
* @author kingstudy@vip.qq.com
* @version 建立時間:2018年6月30日 上午11:28:01
* @ClassName LinuxUtil
* @Description 操做Linux系統的相關工具類
*/
import java.io.InputStreamReader;
import java.io.LineNumberReader;
import java.nio.charset.Charset;
import java.util.Properties;java

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;服務器

import com.jcraft.jsch.ChannelExec;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.Session;session

public class LinuxUtil {
private static final Logger log = LoggerFactory.getLogger(LinuxUtil.class);app

private static ChannelExec channelExec;dom

private static Session session = null;工具

private static int timeout = 60000;
// 測試代碼
public static void main(String[] args){
try{
versouSshUtil("192.168.1.1","root","King",22);
//System.out.println(1);
runCmd("cat /dev/urandom |od -x | tr -d ' '| head -n 1","UTF-8");
// System.out.println(2);
}catch (Exception e){
// TODO Auto-generated catch block
e.printStackTrace();
}
}測試

//java 操控Linux
/**
* 鏈接遠程服務器
* @param host ip地址
* @param userName 登陸名
* @param password 密碼
* @param port 端口
* @throws Exception
*/
public static void versouSshUtil(String host,String userName,String password,int port) throws Exception{
log.info("嘗試鏈接到....host:" + host + ",username:" + userName + ",password:" + password + ",port:"
+ port);
JSch jsch = new JSch(); // 建立JSch對象
session = jsch.getSession(userName, host, port); // 根據用戶名,主機ip,端口獲取一個Session對象
session.setPassword(password); // 設置密碼
Properties config = new Properties();
config.put("StrictHostKeyChecking", "no");
session.setConfig(config); // 爲Session對象設置properties
session.setTimeout(timeout); // 設置timeout時間
session.connect(); // 經過Session創建連接
}編碼

/**
* 在遠程服務器上執行命令
* @param cmd 要執行的命令字符串
* @param charset 編碼
* @throws Exception
*/
public static String runCmd(String cmd,String charset) throws Exception{
channelExec = (ChannelExec) session.openChannel("exec");
channelExec.setCommand(cmd);
channelExec.setInputStream(null);
channelExec.setErrStream(System.err);
channelExec.connect();
InputStream in = channelExec.getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(in, Charset.forName(charset)));
StringBuffer sb=new StringBuffer();
String buf = null;
while ((buf = reader.readLine()) != null){
//System.out.println("111");
sb.append(buf);
}
//System.out.println(sb.toString());
reader.close();
channelExec.disconnect();
return sb.toString();
}
}對象

相關文章
相關標籤/搜索