java代码中调⽤sh脚本_Java代码中,执⾏服务器上的shell脚
本
1.解决什么问题:代码在118服务器上,shell脚本在119服务器上。118代码调⽤shell脚本。
2.其它问题:如果代码和脚本在同⼀服务器上,简单多了。
思路:因为shell脚本在119上,所以要连接119服务器才⾏。⽤到了了jcraft依赖,去maven库搜索⼀下,加进来。
main⽅法教你如何调⽤
import java.io.InputStream;
import com.jcraft.jsch.Channel;
import com.jcraft.jsch.ChannelExec;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.JSchException;
import com.jcraft.jsch.Session;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* java 登录linux系统,并读取执⾏shell命令结果
* @author zyb
* 2020-07-06
*/
public class LinuxShell {
private static Logger log = Logger(LinuxShell.class);
private static Session session;
/
**
* 远程登录
* @param host 主机ip
* @param port 端⼝号,默认22
* @param user 主机登录⽤户名
* @param password 主机登录密码
* @return
* @throws JSchException
*/
public static void login(String host, int port, String user,String password) {
try {
JSch jsch = new JSch();
session = Session(user, host, port);
session.setPassword(password);
// 设置第⼀次登陆的时候提⽰,可选值:(ask | yes | no)
session.setConfig("StrictHostKeyChecking", "no");
// 连接超时
} catch (JSchException e) {
log.info("登录时发⽣错误!");
e.printStackTrace();
}
}
/**
* 执⾏shell脚本
* @param command shell命令脚本
* @return
* @throws Exception
*/
public static String executeShell(String command) throws Exception { byte[] tmp = new byte[1024];
// 命令返回的结果
StringBuffer resultBuffer = new StringBuffer();
Channel channel = session.openChannel("exec");
ChannelExec exec = (ChannelExec) channel;
// 返回结果流(命令执⾏错误的信息通过getErrStream获取)
InputStream stdStream = InputStream();
exec.setCommand(command);
try {
// 开始获得SSH命令的结果
while (true) {
while (stdStream.available() > 0) {
int i = ad(tmp, 0, 1024);
if (i < 0) break;
resultBuffer.append(new String(tmp, 0, i)); }
if (exec.isClosed()) {
//System.out.String()); break;
}
try {
Thread.sleep(200);
} catch (Exception e) {
e.printStackTrace();
}
}
} finally {
/
/关闭连接
channel.disconnect();
}
String();
}
/**
* 关闭连接
*/
public static void close() {
if (session.isConnected())
session.disconnect();
}
/**
* 测试
* @param args
*/
public static void main(String[] args) {
String ip="192.168.1.119";shell脚本返回执行结果
String username="⽤户名";
String password="密码";
LinuxShell linux = new LinuxShell();
linux.login(ip, 22, username,password);
/
/要执⾏的脚本命令
String command = "sh /dir/test/aaa_do.sh "; try {
String result = uteShell(command); System.out.println(result);
linux.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论