gpt4 book ai didi

authentication - 通过代理身份验证的 FTPS

转载 作者:太空宇宙 更新时间:2023-11-03 14:53:22 24 4
gpt4 key购买 nike

是否有可能通过具有身份验证的代理建立 FTPS 服务器连接?

为了使用代理身份验证连接到普通的 FTP 服务器,我使用了 Apache Commons 的 FTPHTTPClient。但是,我找不到在 FTPSClient 中设置代理详细信息的方法。有人可以指导我正确的方向吗?

谢谢。

最佳答案

来自FTPHTTPClient docs ,它看起来就像你会使用:

// If you are proxying via HTTP CONNECT, use port 80.
String proxyHost = "proxy.example.com";
int proxyPort = 80;
FTPHTTPClient client = new FTPHTTPClient(proxyHost, proxyPort);

String realHost = "ftp.example.com";
int realPort = 21;
client.connect(realHost, realPort);

希望这对您有所帮助!

关于authentication - 通过代理身份验证的 FTPS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32219430/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com