我正在尝试通过 FTP 检索文件,但在 LogCat 中出现以下错误:java.io.FileNotFoundException :/config.txt(只读文件系统)
我已验证该文件存在于服务器上,我可以通过在 Web 浏览器中双击它来读取它。
有人可以帮忙吗?这是我正在使用的代码:
FTPClient client = new FTPClient();
FileOutputStream fos = null;
try {
client.connect("xxx.xxx.xxx.xxx");
client.enterLocalPassiveMode();
client.login("user", "pass");
//
// The remote file to be downloaded.
//
String filename = "config.txt";
fos = new FileOutputStream(filename);
//
// Download file from FTP server
//
client.retrieveFile("/" + filename, fos);
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (fos != null) {
fos.close();
}
client.disconnect();
} catch (IOException e) {
e.printStackTrace();
}