我正在从 FTP 服务器下载 MP3 文件。它适用于将下载并播放 MP3 文件的 Android 应用程序。下载是使用 apache commons 库在 Java 中实现的,代码主要基于另一个教程。下载在我的运行 Java 的桌面上运行非常快,大约需要 5 秒来下载大约 10mb 的文件,但是在 Android 设备上运行的相同代码(我尝试过 2)上下载速度慢得离谱,需要 5-10 分钟同一个文件。(两项测试都是通过 Wifi 完成的)。
代码基于:http ://androiddev.orkitra.com/?p=28&cpage=2#comment-40
下面的代码显示了使用的两种方法:连接和下载。
public boolean connect(String host, String username, String pass, int port){
try{
mFTPClient.connect(host, port);
if(FTPReply.isPositiveCompletion(mFTPClient.getReplyCode())) {
boolean loginStatus = mFTPClient.login(username, pass);
mFTPClient.setFileType(FTP.BINARY_FILE_TYPE);
mFTPClient.enterLocalPassiveMode();
mFTPClient.setKeepAlive(true);
return loginStatus;
}
} catch (Exception e){
System.err.println("Error: Could not connect to: " + host);
e.printStackTrace();
}
return false;
}
public boolean download(String srcFilePath, String dstFilePath) {
boolean downloadStatus = false;
try {
FileOutputStream dstFileStream = new FileOutputStream(dstFilePath);
downloadStatus = mFTPClient.retrieveFile(srcFilePath, dstFileStream);
dstFileStream.close();
return downloadStatus;
} catch (Exception e) {
System.err.println("Error: Failed to download file from " + srcFilePath + " to " + dstFilePath);
}
return downloadStatus;
}
希望我已经提到了所有需要的细节,如果有人能解释为什么它这么慢,以及如果我能在合理的时间内下载它,我将不胜感激。