| Constructor and Description |
|---|
SshjSession(Connector connector)
构造
|
SshjSession(net.schmizz.sshj.SSHClient ssh)
构造
|
| Modifier and Type | Method and Description |
|---|---|
void |
bindLocalPort(InetSocketAddress localAddress,
InetSocketAddress remoteAddress)
绑定端口到本地。
|
void |
bindRemotePort(InetSocketAddress remoteAddress,
InetSocketAddress localAddress)
绑定ssh服务端的serverPort端口, 到本地主机的port端口上.
|
void |
close() |
String |
exec(String cmd,
Charset charset,
OutputStream errStream)
执行Shell命令(使用EXEC方式)
此方法单次发送一个命令到服务端,不读取环境变量,不会产生阻塞。
|
String |
execByShell(String cmd,
Charset charset,
OutputStream errStream)
执行Shell命令
此方法单次发送一个命令到服务端,自动读取环境变量,可能产生阻塞。
|
net.schmizz.sshj.connection.channel.direct.Session |
getRaw()
获取原始对象
|
boolean |
isConnected()
是否连接状态
|
SshjSftp |
openSftp(Charset charset)
打开SFTP会话
|
void |
unBindLocalPort(InetSocketAddress localAddress)
解除本地端口映射
|
void |
unBindRemotePort(InetSocketAddress remoteAddress)
解除远程端口映射
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitbindLocalPort, unBindLocalPortpublic SshjSession(net.schmizz.sshj.SSHClient ssh)
ssh - SSHClientpublic net.schmizz.sshj.connection.channel.direct.Session getRaw()
Wrapperpublic boolean isConnected()
SessionisConnected in interface Sessionpublic void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableIOExceptionpublic SshjSftp openSftp(Charset charset)
charset - 编码SshjSftppublic void bindLocalPort(InetSocketAddress localAddress, InetSocketAddress remoteAddress) throws IORuntimeException
SessionbindLocalPort in interface SessionlocalAddress - 本地主机和端口remoteAddress - 远程主机和端口IORuntimeExceptionpublic void unBindLocalPort(InetSocketAddress localAddress) throws IORuntimeException
SessionunBindLocalPort in interface SessionlocalAddress - 需要解除的本地地址IORuntimeExceptionpublic void bindRemotePort(InetSocketAddress remoteAddress, InetSocketAddress localAddress) throws IORuntimeException
SessionbindRemotePort in interface SessionremoteAddress - ssh服务端上要被绑定的地址localAddress - 转发到的本地地址IORuntimeExceptionpublic void unBindRemotePort(InetSocketAddress remoteAddress)
SessionunBindRemotePort in interface SessionremoteAddress - 需要解除的远程地址和端口public String exec(String cmd, Charset charset, OutputStream errStream)
此方法单次发送一个命令到服务端,不读取环境变量,不会产生阻塞。
cmd - 命令charset - 发送和读取内容的编码errStream - 错误信息输出到的位置public String execByShell(String cmd, Charset charset, OutputStream errStream)
此方法单次发送一个命令到服务端,自动读取环境变量,可能产生阻塞。
cmd - 命令charset - 发送和读取内容的编码errStream - 错误信息输出到的位置Copyright © 2025. All rights reserved.