24

有没有办法可以实现安全的 FTP org.apache.commons.net.ftp.FTPClient

如果没有,Java 的其他选择是什么?

4

5 回答 5

46

首先,确保您了解 FTPS(安全 FTP)和 SFTP 之间的区别:
FTPS 与 SFTP 与 SCP


于 2015-01-12T12:33:54.377 回答
22

您可以使用 org.apache.commons.net.ftp。FTPSClient而不是 org.apache.commons.net.ftp。FTPClient拥有安全的 ftp http://commons.apache.org/proper/commons-net/apidocs/org/apache/commons/net/ftp/FTPSClient.html

于 2014-04-01T20:19:29.437 回答
4

尝试 Java 安全通道

它支持SFTP

http://www.jcraft.com/jsch/

示例可以在这里找到

于 2012-10-09T16:20:41.740 回答
4

Apache FTPClient 目前不支持 SFTP。但是,您可以使用 JSch - Java 安全通道。

Onkar Joshi详细介绍了在 Java 中用于 FTP、SFTP、FTPS 文件传输的库。

一个使用JSch通过SFTP传输文件的例子如下:

    ...

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.   ***");
    }

}

...
于 2014-02-28T14:47:03.507 回答
2

试试 Apache Camel 怎么样,

http://camel.apache.org/ftp2.html

于 2012-10-24T02:43:11.210 回答