本文整理汇总了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();
}
}