本文整理匯總了Java中com.jcraft.jsch.JSchException.printStackTrace方法的典型用法代碼示例。如果您正苦於以下問題:Java JSchException.printStackTrace方法的具體用法?Java JSchException.printStackTrace怎麽用?Java JSchException.printStackTrace使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.jcraft.jsch.JSchException
的用法示例。
在下文中一共展示了JSchException.printStackTrace方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: keepSessionConnected
import com.jcraft.jsch.JSchException; //導入方法依賴的package包/類
private synchronized void keepSessionConnected(Channel channel){
try {
Session session = channel.getSession();
boolean contains = false;
for(Entry<Session, Integer> e2 : usedSessions.entrySet()){
if (e2.getKey() == session) {
contains = true;
break;
}
}
if(contains){
usedSessions.put(session,usedSessions.get(session)+1);
}
else {
usedSessions.put(session, 1);
}
} catch (JSchException e) {
e.printStackTrace();
}
}
示例2: releaseSession
import com.jcraft.jsch.JSchException; //導入方法依賴的package包/類
public synchronized void releaseSession(Channel channel) {
try {
Session session = channel.getSession();
boolean contains = false;
for(Entry<Session, Integer> e2 : usedSessions.entrySet()){
if (e2.getKey() == session) {
contains = true;
break;
}
}
if(contains){
if(usedSessions.get(session)<=1){
usedSessions.remove(session);
if(!sessions.values().contains(session))
channel.getSession().disconnect();
}
else{
usedSessions.put(session, usedSessions.get(session) - 1);
}
}
} catch (JSchException e) {
e.printStackTrace();
}
}
示例3: connect
import com.jcraft.jsch.JSchException; //導入方法依賴的package包/類
public static Session connect(String host, Integer port, String user, String password) throws JSchException{
Session session = null;
try {
JSch jsch = new JSch();
if(port != null){
session = jsch.getSession(user, host, port.intValue());
}else{
session = jsch.getSession(user, host);
}
session.setPassword(password);
session.setConfig("StrictHostKeyChecking", "no");
//time out
session.connect(3000);
} catch (JSchException e) {
e.printStackTrace();
System.out.println("SFTPUitl connection error");
throw e;
}
return session;
}
示例4: deleteFile
import com.jcraft.jsch.JSchException; //導入方法依賴的package包/類
/**
* @param host
* @param user
* @param pwd
* @param remoteFile
*/
public void deleteFile(String host, String user, String pwd,
String remoteFile) {
try {
JSch ssh = new JSch();
Session session = ssh.getSession(user, host, 22);
java.util.Properties config = new java.util.Properties();
config.put("StrictHostKeyChecking", "no");
session.setConfig(config);
session.setPassword(pwd);
session.connect();
Channel channel = session.openChannel("exec");
channel.connect();
String command = "rm -rf " + remoteFile;
System.out.println("command: " + command);
// ((ChannelExec) channel).setCommand(command);
channel.disconnect();
session.disconnect();
} catch (JSchException e) {
System.out.println(e.getMessage().toString());
e.printStackTrace();
}
}