透過Java 中的SFTP 擷取檔案
安全檔案傳輸協定(SFTP) 是一種安全檔案傳輸協議,可透過SSH 連接。這與 FTPS 等透過標準 TCP 連線使用 TLS/SSL 的協定形成鮮明對比。
要使用 Java 透過 SFTP 從伺服器檢索文件,您可以使用 JSch 函式庫。 JSch 因其強大的功能和用戶友好的介面而被 Eclipse、Ant 和 Apache Commons HttpClient 等專案廣泛使用。
它支援使用者/密碼和基於憑證的登錄,並提供大量 SSH2 功能。以下是可用於透過 SFTP 檢索遠端檔案的基本程式碼範例:
import com.jcraft.jsch.*; public class SftpFileRetriever { public static void main(String[] args) throws JSchException { JSch jsch = new JSch(); String knownHostsFilename = "/home/username/.ssh/known_hosts"; jsch.setKnownHosts(knownHostsFilename); Session session = jsch.getSession("remote-username", "remote-host"); { // Interactive version // This version allows you to selectively update specified known_hosts file. // You'll need to implement the UserInfo interface, and MyUserInfo is a swing implementation provided in JSch's Sftp.java example. UserInfo ui = new MyUserInfo(); session.setUserInfo(ui); // Non-interactive version // This version relies on the host key being in the 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"); sftpChannel.exit(); session.disconnect(); } }
此程式碼建立 SSH 會話、設定已知主機並連接到頻道。然後,它檢索遠端文件並斷開會話。錯誤處理和使用者互動的具體細節留作練習供您完成。
以上是如何使用 Java 從 SFTP 伺服器檢索檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!