java 远程登陆_使用java 远程登陆网摘练习

使用java 远程登陆网摘练习

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStream;

import java.io.InputStreamReader;

import ch.ethz.ssh2.Connection;

import ch.ethz.ssh2.Session;

import ch.ethz.ssh2.StreamGobbler;

public class CentosUtil {

public static void main(String[] args) {

String hostname = "192.168.169.131";

String username = "root";

String password = "root";

try {

/* Create a connection instance */

Connection connection = new Connection(hostname);

/* Now connect */

connection.connect();

/* Authenticate */

boolean isAuthenticated = connection.authenticateWithPassword(username, password);

if (isAuthenticated == false)

throw new IOException("Authentication failed.");

Session session = connection.openSession();

//session.execCommand("ps -ef");

session.execCommand("df -h");

System.out.println("Here is some information about the remote host:");

InputStream stdout = new StreamGobbler(session.getStdout());

BufferedReader br = new BufferedReader(new InputStreamReader(stdout));

while (true) {

String line = br.readLine();

if (line == null)

break;

System.out.println(line);

}

/* Show exit status, if available (otherwise "null") */

System.out.println("ExitCode:" + session.getExitStatus());

session.close();

} catch (Exception e) {

e.printStackTrace(System.err);

System.exit(-2);

}

}

}


版权声明:本文为weixin_39658474原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。