我正在編寫使用SSH進行靜態路由管理的Java GUI程序。我的代碼如下:JSch:如何使會話保持活動狀態
import com.jcraft.jsch.*;
import java.io.*;
public class Konsep {
String status;
static String username;
static String hostname;
String inputcommand;
String output;
static Session session;
JSch jsch = new JSch();
public String status(String stringstatus) {
stringstatus = status;
return stringstatus;
}
public String InputCommand(String inputcommandstatus) {
inputcommandstatus = inputcommand;
return inputcommandstatus;
}
public void connect(String usernamelokal, String hostnamelokal,
String password, int port) {
// JSch jsch=new JSch();
try {
Session sessionlokal = jsch.getSession(usernamelokal,
hostnamelokal, port);
sessionlokal.setPassword(password);
UserInfo ui = new UserInfoku.Infoku();
sessionlokal.setUserInfo(ui);
sessionlokal.setTimeout(0);
sessionlokal.connect();
status = "tersambung \n";
username = usernamelokal;
hostname = hostnamelokal;
session = sessionlokal;
System.out.println(username + " " + hostname);
} catch (Exception e) {
System.out.println(e);
status = "Exception = \n " + e + "\n";
}
}
public void disconnect() {
// JSch jsch=new JSch();
try {
Session sessionlokal = jsch.getSession(username, hostname);
// System.out.println(username +" "+ hostname);
sessionlokal.disconnect();
status = "wes pedhoott \n";
} catch (Exception e) {
System.out.println(e);
status = "Exception = \n " + e + "\n";
}
}
public void addRoute() {
// JSch jsch=new JSch();
System.out.println(username + " " + hostname);
try {
Session sessionlokal = session; // =jsch.getSession(username, hostname);
Channel channel = sessionlokal.openChannel("exec");
((ChannelExec) channel).setCommand(inputcommand);
channel.setInputStream(null);
channel.connect();
((ChannelExec) channel).setErrStream(System.err);
InputStream in = channel.getInputStream();
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()) {
System.out.println("exit-status: "
+ channel.getExitStatus());
break;
}
try {
Thread.sleep(1000);
} catch (Exception ee) {
}
}
channel.disconnect();
} catch (Exception e) {
System.out.println(e);
}
}
}
問題是,當我調用connect方法,然後調用addroute,程序返回
root 192.168.50.2
root 192.168.50.2
com.jcraft.jsch.JSchException: session is down
我一直在試圖獲得與會話狀態要麼
Session sessionlokal=session; //returns com.jcraft.jsch.JSchException: ChannelExec
或
Session sessionlokal=jsch.getSession(username, hostname); //returns session is down
我也試過使用keepalive,但它也不工作。
我的意圖是創建一個會話,讓主持人(登錄),同時離開會議,執行一個或多個命令,稍後可能執行其他命令,然後在不需要(註銷)時關閉會話。 我一直在尋找這個論壇,我發現這個question,但代碼是創建一個方法來定義一個命令先執行,然後創建會話,調用命令的方法並關閉會話。
如上所述我該怎麼辦?
很好的解決方案,只是一個提示:我會添加'testChannel.exit();'成功檢查後,否則你最終會在服務器端爲每個檢查再多一個sftp-server守護進程 – GWu 2014-07-31 07:24:00
謝謝。增加了'testChannel.exit()'。 – blafasel 2014-08-10 12:24:23
我在打開多個頻道時遇到了死鎖問題。使getSession()'synchronized'解決了這個問題,但這有點性能問題。你知道哪部分可能需要同步嗎?也許測試通道connect = disconnect? – 2015-06-15 08:05:32