1

我需要通过 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 的行并暂停很长时间。需要帮助导入密钥,请。

4

1 回答 1

2

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

于 2012-05-04T06:21:39.867 回答