0

我对 Apache commons-net-ftp 库有疑问。我所做的是发送一个小尺寸的 MP3 文件。大小在 1 到 10 kb 之间。算法的所有阶段都顺利通过,但 FTP 上没有文件。

这是算法的概述:

ftpClient.connect(InetAddress.getByName(mServerName));
ftpClient.login(mLogin, mPassword);
ftpClient.changeWorkingDirectory(mWorkingDir);
if (ftpClient.getReplyString().contains("250")) {
        ftpClient.setFileType(FTP.BINARY_FILE_TYPE);
        BufferedInputStream buffIn = new BufferedInputStream(new FileInputStream(fullPathToLocalFile));
        ftpClient.enterLocalPassiveMode();
        ProgressInputStream progressInput = new ProgressInputStream(buffIn, callBack);
        boolean result = ftpClient.storeFile(serverFileName, progressInput);
        buffIn.close();
        ftpClient.logout();
        ftpClient.disconnect();
}

这是输出:

FTP Uploader
- server: ftp.***.**.**
- login: freer_********
- password: ********
FTP Uploader upload file 1367302998934.mp3 full path /mnt/sdcard/Android/data/*********.*****.********/files/mp3/1367302998934.mp3
FTP replay: 250 OK. Current directory is /htdocs/mp3
ProgressInputStream update 1024
ProgressInputStream update 2048
ProgressInputStream update 3072
ProgressInputStream update 4070
ProgressInputStream update 4070
FTP result: true

如您所见,所有输出都指向正常行为,但 FTP 服务器上没有文件。有没有人有同样问题的经验?

4

1 回答 1

0

对不起,这个帖子,答案很清楚......我使用的主机提供商有一项服务来监控“mp3”内容。它不允许使用 mp3 文件存储在主机上。

PS我想关闭这篇文章,但我不知道怎么做。

于 2013-04-30T07:37:20.117 回答