在Java 中透過SFTP 擷取檔案
使用SFTP 而非FTPS 從遠端伺服器擷取檔案時,Java 開發人員面臨獨特的挑戰。一種方法是探索 JSch 庫,這是 Eclipse、Ant 和 Apache Commons HttpClient 等知名開源專案廣泛採用的選擇。
JSch 無縫地適應使用者名稱/密碼和基於證書的登錄,提供全面的 SSH2 功能。下面,我們展示了使用 JSch 透過 SFTP 檢索檔案的基本範例:
JSch jsch = new JSch(); String knownHostsFilename = "/home/username/.ssh/known_hosts"; jsch.setKnownHosts( knownHostsFilename ); Session session = jsch.getSession( "remote-username", "remote-host" ); { // "interactive" version // can selectively update specified known_hosts file // need to implement UserInfo interface // MyUserInfo is a swing implementation provided in // examples/Sftp.java in the JSch dist UserInfo ui = new MyUserInfo(); session.setUserInfo(ui); // OR non-interactive version. Relies in host key being in known-hosts file session.setPassword( "remote-password" ); } session.connect(); Channel channel = session.openChannel( "sftp" ); channel.connect(); ChannelSftp sftpChannel = (ChannelSftp) channel; sftpChannel.get("remote-file", "local-file" ); // OR InputStream in = sftpChannel.get( "remote-file" ); // process inputstream as needed sftpChannel.exit(); session.disconnect();
以上是如何使用 JSch 在 Java 中透過 SFTP 檢索檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!