2012-10-09 36 views
17

Có cách nào tôi có thể thực hiện một FTP an toàn với org.apache.commons.net.ftp.FTPClient?Secure FTP với org.apache.commons.net.ftp.FTPClient

Nếu không, tùy chọn khác cho Java là gì?

+0

Bạn đã tìm thấy gì? – Rob

+0

Có lý do nào khiến bạn không thể SSH? Nếu không có, hãy thử Apache Mina hoặc Jsch – amphibient

+1

gì về việc chuyển nó cho 'FTPSClient' rằng lớp con nó? –

Trả lời

3

Apache FTPClient không hỗ trợ SFTP vào lúc này. Tuy nhiên, bạn có thể sử dụng JSch - Java Secure Channel.

Onkar Joshi đi vào chi tiết của thư viện để sử dụng cho FTP, SFTP, FTPS chuyển tập tin trong Java.

Một ví dụ của việc sử dụng JSch để chuyển các tập tin với SFTP là như sau:

... 

private static final Logger logger = Logger.getLogger(YourClass.class.getName()); 

public boolean sendDataViaSFTP(String contents) throws Exception { 
    String hostname = "<FTP hostname/IP>"; 
    String username = "<FTP username>"; 
    String password = "<FTP password>"; 
    String remoteDirectory = "<FTP remote directory>"; 
    int ftpPort = 22; 

    logger.info("*** Creating FTP session. ***"); 
    JSch jsch = new JSch(); 
    Session session = null; 
    Channel channel = null; 
    ChannelSftp c = null; 

    //Now connect and SFTP to the SFTP Server 
    try { 
     //Create a session sending through our username and password 
     session = jsch.getSession(username, hostname, ftpPort); 
     logger.info("*** FTP Session created. ***"); 
     session.setPassword(password); 

     //Security.addProvider(new com.sun.crypto.provider.SunJCE()); 
     //Setup Strict HostKeyChecking to no so we dont get the 
     //unknown host key exception 
     Properties config = new Properties(); 
     config.put("StrictHostKeyChecking", "no"); 
     session.setConfig(config); 
     session.connect(); 
     logger.info("*** Session connected. ***"); 

     //Open the SFTP channel 
     logger.info("*** Opening FTP Channel. ***"); 
     channel = session.openChannel("sftp"); 
     channel.connect(); 
     c = (ChannelSftp) channel; 

     //Change to the remote directory 
     logger.info("*** Changing to FTP remote dir: " + remoteDirectory + " ***"); 
     c.cd(remoteDirectory); 

     //Send the file we generated 
     try { 
      String filename = "myfile.txt"; 

      logger.info("*** Storing file as remote filename: " + filename + " ***"); 

      ByteArrayInputStream bis = new ByteArrayInputStream(contents.getBytes()); 
      c.put(bis, filename); 
      return true; 
     } catch (Exception e) { 
      logger.info("*** Storing remote file failed. " + e.toString() + " ***"); 
      throw e; 
     } 
    } catch (Exception e) { 
     logger.info("*** Unable to connect to FTP server. " + e.toString() + " ***"); 
     throw e; 
    } finally { 
     // 
     //Disconnect from the FTP server 
     // 
     try { 
      if(session != null) 
       session.disconnect(); 

      if(channel != null) 
       channel.disconnect(); 

      if(c != null) 
       c.quit(); 
     } catch (Exception exc) { 
      logger.severe("*** Unable to disconnect from FTP server. " + exc.toString()+" ***"); 
     } 

     logger.info("*** SFTP Process Complete. ***"); 
    } 

} 

... 
+0

Có một lý do chính đáng cho nó; SFTP là một thứ hoàn toàn khác với FTP. Giao dịch 'Java không phải là Javascript' của nó khá nhiều :) – Gimby

+2

Dự án Apache Commons Net tạo ra FTPClient DOES hỗ trợ SFTP. – BrianC