SSH/SCP 를 실행 하 는 자바 의 JSH
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/
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.