java连接linux服务器并执行多条指令
时间: 2023-05-13 07:04:29 浏览: 112
可以使用 JSch 库来连接 Linux 服务器并执行多条指令。以下是一个示例代码:
```java
import com.jcraft.jsch.*;
public class SSHConnection {
public static void main(String[] args) {
String host = "your_host";
String user = "your_username";
String password = "your_password";
int port = 22;
try {
JSch jsch = new JSch();
Session session = jsch.getSession(user, host, port);
session.setPassword(password);
session.setConfig("StrictHostKeyChecking", "no");
session.connect();
Channel channel = session.openChannel("exec");
((ChannelExec) channel).setCommand("ls -l; pwd; echo 'Hello World'");
channel.setInputStream(null);
((ChannelExec) channel).setErrStream(System.err);
InputStream in = channel.getInputStream();
channel.connect();
byte[] tmp = new byte[1024];
while (true) {
while (in.available() > 0) {
int i = in.read(tmp, 0, 1024);
if (i < 0) break;
System.out.print(new String(tmp, 0, i));
}
if (channel.isClosed()) {
if (in.available() > 0) continue;
System.out.println("exit-status: " + channel.getExitStatus());
break;
}
try {
Thread.sleep(1000);
} catch (Exception ee) {
}
}
channel.disconnect();
session.disconnect();
} catch (JSchException | IOException e) {
e.printStackTrace();
}
}
}
```
这个示例代码连接到指定的 Linux 服务器,执行了三条指令:ls -l、pwd 和 echo 'Hello World',并将它们的输出打印到控制台上。你可以根据自己的需要修改这些指令。
阅读全文