连接到 linux box 的 java 代码是什么?手动我通过 Putty 进行连接,所以我的问题是如何集成到 java 中并连接 Linux 盒或者有任何其他方式来连接它。
我试过这段代码它没有用。请
import java.io.InputStream;
import java.io.OutputStream;
public class Test {
public static void main( String[] args ) throws Exception {
String[] cm = {
"ssh= C:\\users\\...\\putty.exe",
"root@000.00.1.00" ,
"df -h"
};
Process p = Runtime.getRuntime().exec( cm );
InputStream in = p.getInputStream();
OutputStream out = p.getOutputStream();
out.write( "password".getBytes() );
}
}