91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JSch中怎么使用sftp協議實現服務器文件上傳下載

發布時間:2022-03-08 09:03:11 來源:億速云 閱讀:195 作者:iii 欄目:開發技術

這篇文章主要介紹了JSch中怎么使用sftp協議實現服務器文件上傳下載的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇JSch中怎么使用sftp協議實現服務器文件上傳下載文章都會有所收獲,下面我們一起來看看吧。

Jsch是什么?

JSch 是SSH2的一個純Java實現。它允許你連接到一個sshd 服務器,使用端口轉發,X11轉發,文件傳輸等等。你可以將它的功能集成到你自己的 程序中。同時該項目也提供一個J2ME版本用來在手機上直連SSHD服務器

Jsch功能很強大,博主這里主要用來做文件操作

怎么使用?

添加jar依賴

<dependency>
 <groupId>com.jcraft</groupId>
 <artifactId>jsch</artifactId>
 <version>0.1.53</version>
</dependency>

我把我的SftpUtil貼下面了,注釋還算清楚

/**
 * Content :sftp協議文件上傳下載
 * Created by kl on 2016/5/6.
 */
public class SftpUtil {
    /**
     * 上傳文件到指定服務器
     * @param ip 連接ip
     * @param user 用戶名
     * @param psw 密碼
     * @param port 端口 <=0 為默認端口
     * @param fielPath 上傳的服務器路徑
     * @param serverFileName 服務器保存的文件名
     * @param instream 要上傳的文件流
     * @throws Exception
     */
    public static void sftpFileUpload(String ip,int port, String user, String psw, String fielPath,String serverFileName,InputStream instream) throws Exception {
        Session session =getSession( ip,  user,  psw,  port);
        Channel channel = null;
        try {
            //創建sftp通信通道
            channel = (Channel) session.openChannel("sftp");
            channel.connect(1000);
            ChannelSftp sftp = (ChannelSftp) channel;
            //進入服務器指定的文件夾
            sftp.cd(fielPath);
            OutputStream outstream = sftp.put(serverFileName);
            byte b[] = new byte[1024*200];//每次傳輸200k
            int n;
            while ((n = instream.read(b)) != -1) {
                outstream.write(b, 0, n);
            }
            outstream.flush();
            outstream.close();
            instream.close();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            session.disconnect();
            if (channel!=null)channel.disconnect();
        }
    }
    /**
     * 從指定服務器下載文件到本地
     * @param ip 連接ip
     * @param user 用戶名
     * @param psw 密碼
     * @param port 端口 <=0 為默認端口
     * @param fielPath 服務器文件路徑
     * @param serverFileName 要下載的文件名
     * @param outputStream 輸出到本地的文件流
     * @throws Exception
     */
    public static void sftpFileDownload(String ip,int port, String user, String psw, String fielPath,String serverFileName,OutputStream outputStream) throws Exception {
        Session session =getSession( ip,  user,  psw,  port);
        Channel channel = null;
        try {
            //創建sftp通信通道
            channel = (Channel) session.openChannel("sftp");
            channel.connect(1000);
            ChannelSftp sftp = (ChannelSftp) channel;
            //進入服務器指定的文件夾
            sftp.cd(fielPath);
            sftp.get(serverFileName,outputStream);
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            session.disconnect();
            if (channel!=null)channel.disconnect();
        }
    }
    /**
     * 刪除服務器指定文件
     * @param ip 連接ip
     * @param user 用戶名
     * @param psw 密碼
     * @param port 端口 <=0 為默認端口
     * @param fielPath 服務器文件路徑
     * @param serverFileName 要刪除的文件名
     * @throws Exception
     */
    public static void sftpFileDelete(String ip,int port, String user, String psw, String fielPath,String serverFileName) throws Exception {
        Session session =getSession( ip,  user,  psw,  port);
        Channel channel = null;
        try {
            //創建sftp通信通道
            channel = (Channel) session.openChannel("sftp");
            channel.connect(1000);
            ChannelSftp sftp = (ChannelSftp) channel;
            //進入服務器指定的文件夾
            sftp.cd(fielPath);
            sftp.rm(serverFileName);
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            session.disconnect();
            if (channel!=null)channel.disconnect();
        }
    }
    /**
     * 查看指定目錄所有文件
     * @param ip
     * @param user
     * @param psw
     * @param port
     * @param fielPath
     * @throws Exception
     */
    public static Vector  seeServerFileList(String ip, int port,String user, String psw,  String fielPath)throws Exception{
        Session session =getSession( ip,  user,  psw,  port);
        Channel channel = null;
        Vector v=null;
        try {
            //創建sftp通信通道
            channel = (Channel) session.openChannel("sftp");
            channel.connect(1000);
            ChannelSftp sftp = (ChannelSftp) channel;
            //進入服務器指定的文件夾
            sftp.cd(fielPath);
            //列出服務器指定的文件列表
             v = sftp.ls(fielPath);
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            session.disconnect();
            if (channel!=null)channel.disconnect();
        }
        return  v;
    }
    /**
     * 連接服務器
     * @param ip 服務器地址
     * @param user 用戶名
     * @param psw  密碼
     * @param port  連接端口
     * @return
     * @throws Exception
     */
    public static Session getSession(String ip, String user, String psw, int port)throws Exception{
        Session session = null;
        JSch jsch = new JSch();
        if (port <= 0) {
            //連接服務器,采用默認端口
            session = jsch.getSession(user, ip);
        } else {
            session = jsch.getSession(user, ip, port);
        }
        //如果服務器連接不上,則拋出異常
        if (session == null) {
            throw new Exception("sftp session is null");
        }
        session.setPassword(psw);//設置密碼
        //設置登陸超時時間
        session.connect(30000);//30s
        return  session;
    }
}

關于“JSch中怎么使用sftp協議實現服務器文件上傳下載”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“JSch中怎么使用sftp協議實現服務器文件上傳下載”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

丰原市| 九江县| 江津市| 白朗县| 共和县| 大荔县| 芒康县| 娄底市| 班玛县| 镇平县| 西藏| 广宁县| 仙居县| 沁水县| 江津市| 读书| 上杭县| 芦山县| 延边| 法库县| 许昌县| 中西区| 三明市| 武陟县| 永州市| 玉门市| 腾冲县| 阆中市| 永平县| 洞口县| 兖州市| 姚安县| 琼海市| 福州市| 裕民县| 招远市| 岳普湖县| 凤凰县| 武邑县| 米泉市| 于都县|