如何在PuTTY格式中使用FTPSClient和密钥

时间:2012-05-04 06:10:04

标签: java putty ftps

我需要通过FTPS(隐式或显式)连接到远程服务器。我通过FileZilla成功连接到服务器。我还测试了从公共ftp:ftp.mozilla.org检索文件的代码 现在我需要相同的ftps代码。我有私钥和KeyStore的问题

String keyPath = "src/test/resources/keys/thekey.ppk";
        FTPSClient client = new FTPSClient();
        FileOutputStream fos = null;
        try {

            KeyStore ks = KeyStore.getInstance("JKS"); //
            FileInputStream fis = new FileInputStream(keyPath);
            ks.load(fis, "".toCharArray());//java.io.IOException: Invalid keystore format
            fis.close();
            KeyManagerFactory kmf = KeyManagerFactory.getInstance(KeyManagerFactory
                    .getDefaultAlgorithm());
            kmf.init(ks, "".toCharArray());

            System.out.println("connecting to 1.1.1.1...");
            client.setDefaultTimeout(10000);
            client.connect("1.1.1.1", 2190);
            System.out.println("loggin in...");
            System.out.println("login: " + client.login("login", "pass"));
            String remoteDir = "/pub/downloaded/";
            String remoteFileName = "testMsg.txt";
            String localFileName = "testMsg.local.txt";

            fos = new FileOutputStream(localFileName);

            System.out.println("retrieving file...");
            boolean isRetrieved = client.retrieveFile(remoteDir + remoteFileName, fos);
            System.out.print("File: " + remoteDir + remoteFileName + "; IsRetrieved: " + isRetrieved + "\n");

        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if (fos != null) {
                    fos.close();
                }
                client.disconnect();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

密钥以PuTTY格式生成。还有什么其他选项可以放在KeyStore.getInstance(“JKS”)。 如果省略使用KeyStore而不是代码的部分与client.retrieveFile达成一致并暂停很长时间。 需要帮助来导入密钥,PLZ。

1 个答案:

答案 0 :(得分:2)

FTPS代表FTP-over-SSL。 SSL使用X.509证书进行身份验证(我们现在省略了其他很少使用的方法)。 Putty是SSH / SFTP客户端(其中SFTP代表SSH文件传输协议),putty密钥是SSH密钥。因此,您无法使用SSH密钥进行SSL身份验证。