我正在使用JSch庫列出並從SFTP服務器下載文件。
在JSch ChannelSftp操作上配置超時
Channel channel = this.session.openChannel(SFTP_CHANNEL_NAME);
channel.connect();
sftpChannel = (ChannelSftp) channel;
Vector listing = sftpChannel.ls("*");
在調用ls
時,應用程序線程有時會卡住。
線程轉儲 -
Thread 15108: (state = BLOCKED)
java.lang.Object.wait(long) @bci=0 (Compiled frame; information may be imprecise)
java.io.PipedInputStream.read() @bci=142, line=310 (Compiled frame)
java.io.PipedInputStream.read(byte[], int, int) @bci=43, line=361 (Compiled frame)
com.jcraft.jsch.ChannelSftp.fill(byte[], int, int) @bci=17, line=2527 (Compiled frame)
com.jcraft.jsch.ChannelSftp.header(com.jcraft.jsch.Buffer, com.jcraft.jsch.ChannelSftp$Header) @bci=12, line=2553 (Interpreted frame)
com.jcraft.jsch.ChannelSftp.ls(java.lang.String) @bci=298, line=1424 (Interpreted frame)
是否有對ls
等方法配置超時的方法嗎?我在channel.connect(timeout)
上看到了設置超時,但這隻會在連接到遠程服務器時設置超時。
以我的版本,這是0.1.53,參數超時'如在該文檔中指定setServerAliveInterval'被解釋,在**毫秒**。 – bskp 2017-06-22 06:49:27