0

我有一个要求,我必须访问一个 unix 服务器,并且在该服务器上我必须运行一个带有我的 java 应用程序中的一些参数的 shell 脚本。请通过示例提出一些解决方案。

我尝试了一些东西,但它不起作用。

SshWrapper ssh = new SshWrapper();
 try {  
        ssh.connect("10.206.19.80", 22);  
        ssh.login("*****","*****");  

        ssh.setPrompt("c898vqz:~");  
        ssh.waitfor("#");
        System.out.println("PWD**********"+ssh.send("pwd"));  

        ssh.disconnect();
        System.out.println(ssh.getClass());
    } catch (java.io.IOException e) {  
        e.printStackTrace();  
    }

null_ssh.send("pwd")

4

2 回答 2

2

您可以使用SSH组件JCraft进行远程连接和 shell 命令调用:

import com.jcraft.jsch.*

从我的旧代码中提取:

JSch jsch = new JSch();

String command = "/tmp/myscript.sh";
Session session = jsch.getSession(user, host, 22);
session.connect();

Channel channel = session.openChannel("exec");
((ChannelExec)channel).setCommand(command);

channel.setInputStream(null);
((ChannelExec)channel).setErrStream(System.err);
InputStream in = channel.getInputStream();
java.util.Properties config = new java.util.Properties();
config.put("StrictHostKeyChecking", "no");
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 (channel.getExitStatus() == 0) {
          System.out.println("Command executed successully.");
      }
      break;
  }
}
channel.disconnect();
session.disconnect();

您还可以通过session.openChannel("sftp").

哦.. injava它太罗嗦了,而不是例如 in rubyor python:)

于 2013-08-23T11:06:48.247 回答
1
JSch js = new JSch();
Session s = js.getSession("username", "ip", port);
s.setPassword("password");
Properties config = new Properties();
config.put("StrictHostKeyChecking", "no");
s.setConfig(config);
s.connect();
System.out.println("connection ");
Channel c = s.openChannel("sftp");
ChannelSftp ce = (ChannelSftp) c;

ce.connect();
System.out.println("connection ");
ce.disconnect();
s.disconnect(); 
于 2017-07-21T04:15:30.420 回答