SSH/SCP 를 실행 하 는 자바 의 JSH

3084 단어
더 읽 기
JSH (Java Secure Channel) 는 순수 자바 의 SSH 2 구현 이다.이 를 자바 응용 프로그램 에 통합 하여 sshd 서버 를 연결 하고 명령 을 실행 할 수 있 습 니 다 (port forward, file transfer, terminal emulation).Ant, Eclipse - CVSSH 2, NetBeans 등 도구 가 사용 되 고 있다.서비스 가 Liux 서버 에 배치 되 어 있 으 면 시스템 명령 을 실행 해 야 할 때 가 있 습 니 다. 이 때 는 Runtime. getRuntime (). exec ("자바 - version") 를 사용 해 야 합 니 다.하지만 이렇게 하면 서버 메모리 가 순식간에 많이 늘 어 날 것 이다.JSH 는 자바 TM Cryptography Extension (JCE) 을 기반 으로 소켓 을 통 해 통신 을 실현 해 메모리 급등 을 크게 줄 일 수 있다.
http://www.jcraft.com/
jsch - 0.1.51. jar
SSH 예:
public void ssh() throws Exception {
	JSch jsch = new JSch();

	// connect session
	Session session = jsch.getSession(USER_ID, HOST_NAME, 22);
	session.setPassword(PASSWORD);
	session.setConfig("StrictHostKeyChecking", "no");
	session.connect();

	// exec command remotely
	String command = "ls -l";
	ChannelExec channel = (ChannelExec) session.openChannel("exec");
	channel.setCommand(command);
	channel.connect();

	// get stdout
	InputStream in = channel.getInputStream();
	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()) {
			System.out.println("exit-status: " + channel.getExitStatus());
			break;
		}
		try {
			Thread.sleep(1000);
		} catch (Exception ee) {
		}
	}
	channel.disconnect();
	session.disconnect();
}

SFTP 예:
public void sftp() throws Exception {
	JSch jsch = new JSch();
	
	// connect session
	Session session = jsch.getSession(USER_ID, HOST_NAME, 22);
	session.setPassword(PASSWORD);
	session.setConfig("StrictHostKeyChecking", "no");
	session.connect();

	// sftp remotely
	ChannelSftp channel = (ChannelSftp) session.openChannel("sftp");
	channel.connect();

	// ls
	Vector list = channel.ls(".");
	System.out.println("---- ls");
	for (int i = 0; i < list.size(); i++) {
		System.out.println(list.get(i));
	}

	// lstat
	try {
		SftpATTRS stat = channel.lstat("index.html");
		System.out.println("---- lstat");
		System.out.println(stat);
		System.out.println(stat.getSize());
	} catch (SftpException ex) {
		ex.printStackTrace();
	}

	// get
	channel.get("./index.html", "./index.html.dst");
	// put
	channel.put(new FileInputStream("c:/test.txt"), "test_new.txt");

	channel.disconnect();
	session.disconnect();
}

다른 도 구 는 다음 과 같다.
Ganymed SSH-2: https://code.google.com/p/ganymed-ssh-2/
sshj : https://github.com/shikhar/sshj
Apache SSHD: http://mina.apache.org/sshd-project/

좋은 웹페이지 즐겨찾기