FTP 应该指定什么端口
我正在将程序从 Basic4PPC 转换为 Basic4Android。
该程序使用 FTP 从服务器读取小文件。原来的程序运行得很好。现在,使用 Basic4Android 读取文件会导致 success = false。 FTP 连接已关闭且无任何指示。我必须指定一个端口号。示例代码显示 21。该端口是唯一应该工作的端口吗?如何找到正确的端口号?
哈利
Im am converting a program from Basic4PPC to Basic4Android.
That program uses FTP to read a small file from a server. The original program works very well. Now with Basic4Android reading a file results in success = false. FTPConnection closed without indication. I have to specify a port number. The sample code shows 21. Is that port the only one which should work? How to find the correct port number?
Harry
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FTP 协议在 RFC 959 中定义,指定端口 21 进行连接,使用端口 20用于必要时的数据传输。虽然您不必使用端口 21 来建立 FTP 连接,但您应该这样做,除非您有充分的理由偏离标准。
The FTP protocol is defined in RFC 959 and specifies port 21 for connections, with port 20 used for data transmissions as necessary. Whilst you don't have to use port 21 to establish an FTP connection, you should do so unless you have a very good reason to diverge from the standard.