gpt4 book ai didi

ftp - 如何使用Kotlin在android studio中使用FTP上传小文件或图片

转载 作者:行者123 更新时间:2023-12-02 12:42:44 26 4
gpt4 key购买 nike

我正在尝试创建一个需要将一些图像和文本文件上传到支持 FTP 的服务器的应用程序。我来自 python 背景,过去经常使用 FTP,但在 Kotlin 中使用它时我很困惑,我们将不胜感激。

最佳答案

您可以通过下载使用ftp4jftp4j-1.7.2.jar .

这是 kotlin 中的示例代码。

try {
val mFtpClient = FTPClient()
mFtpClient.connect("hots", PORT)
mFtpClient.login("user", "password")
mFtpClient.type = FTPClient.TYPE_BINARY
mFtpClient.changeDirectory("/directory_path/")

mFtpClient.upload(File("file_path"))
mFtpClient.disconnect(true)

} catch (e: Exception) {
e.printStackTrace()
}

关于ftp - 如何使用Kotlin在android studio中使用FTP上传小文件或图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50224728/

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