FTP上传安卓

发布于 2025-01-08 04:52:10 字数 1007 浏览 1 评论 0原文

我想将文件从 SD 卡上传到我的 FTP 服务器。 下载部分运行良好,但如果我运行上传方法,它不会抛出任何异常,只是说上传成功

不幸的是,我的 FTP 服务器上的文件夹 test2 或任何地方都没有出现任何内容。

我的上传方法:

public boolean ftpUpload(String srcFilePath, String desFileName,
        String desDirectory) {
    boolean status = false;
    try {
        FileInputStream srcFileStream = new FileInputStream(srcFilePath);

        // change working directory to the destination directory
        if (ftpChangeDirectory(desDirectory)) {
            status = mFTPClient.storeFile(desFileName, srcFileStream);
        }

        srcFileStream.close();
        System.out.println("upload success");

        return status;
    } catch (Exception e) {
        System.out.println("upload failed");
    }

    return status;
}

}

这就是我调用该函数的方式:

ftpUpload("/mnt/sdcard/index.php", "index.php", "/test2");

//ftpUpload(srcFilePath, desFileName, desDirectory);

感谢您的帮助。

I want to upload a file from the sdcard to my FTP Server.
The download part works well, but if I run the upload method it does not throw any exception just says that upload was successfull.

Unfortunately nothing appears on my FTP Server in Folder test2 or anywhere.

My Upload Method:

public boolean ftpUpload(String srcFilePath, String desFileName,
        String desDirectory) {
    boolean status = false;
    try {
        FileInputStream srcFileStream = new FileInputStream(srcFilePath);

        // change working directory to the destination directory
        if (ftpChangeDirectory(desDirectory)) {
            status = mFTPClient.storeFile(desFileName, srcFileStream);
        }

        srcFileStream.close();
        System.out.println("upload success");

        return status;
    } catch (Exception e) {
        System.out.println("upload failed");
    }

    return status;
}

}

and this is how I call the function:

ftpUpload("/mnt/sdcard/index.php", "index.php","/test2");

//ftpUpload(srcFilePath, desFileName, desDirectory);

Thanks for help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文