java使⽤ganymed-ssh2如何远程执⾏多条命令ganymed-ssh2提供执⾏远程命令的⽅法
linux和windows系统多个命令⽤&&隔开,如果其中某个命令出错,后⾯的命令就不会执⾏了
windows系统执⾏命令需要再前⾯加cmd /c
Connection conn = new Connection(hostname, port);
Session ssh = null;
try {
//连接到主机
//使⽤⽤户名和密码校验
boolean isconn = conn.authenticateWithPassword(username, password);
if (!isconn) {
System.out.println("⽤户名称或者是密码不正确");
} else {
System.out.println("已经连接OK");
//以下是linux的⽰例
//将本地conf/server_start.sh传输到远程主机的/opt/pg944/⽬录下
//SCPClient clt = ateSCPClient();
//clt.put("conf/server_start.sh", "/opt/pg944/");
//执⾏命令
//Command("sh /root/hello.sh");
//Command("perl /root/hello.pl");
//只允许使⽤⼀⾏命令,即ssh对象只能使⽤⼀次execCommand这个⽅法,多次使⽤则会出现异常. //多个命令⽤&&隔开
String commands = "ipconfig&&md F:\\\\test\\\\myfolder&&echo 333333>f:\\3.txt&&echo 44444>f:\\4.txt";
ssh = conn.openSession();
// windows系统执⾏命令需要再前⾯加cmd /c
//Command(command);
ssh工具windows//将Terminal屏幕上的⽂字全部打印出来
InputStream is = new Stdout());
BufferedReader brs = new BufferedReader(new InputStreamReader(is,"gbk"));
while (true) {
String line = adLine();
if (line == null) {
break;
}
System.out.println(line);
}
}
} catch (IOException e) {
System.out.Message());
e.printStackTrace();
} finally {
//连接的Session和Connection对象都需要关闭
if (ssh != null) {
ssh.close();
}
if (conn != null) {
conn.close();
}
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论