如何使用java从ftp服务器中删除文件?

2022-09-03 00:25:02

如何使用java程序从ftp服务器中删除文件?我能够使用以下代码成功地在ftp上上传文件:

public static void main(String[] args) throws IOException {
    // TODO Auto-generated method stub
    String s = "ftp://username:password@ftpclient:21/text.txt;type=i";
    URL u = new URL(s);
    URLConnection uc = u.openConnection();
    BufferedOutputStream bos = new BufferedOutputStream(uc.getOutputStream());
    bos.write(67);
    bos.close();
    System.out.println("Done");
}

但是我如何从此ftp服务器中删除文件?任何帮助将不胜感激。提前致谢


答案 1

您可以使用Apache FTPClient来执行此操作以及FTP上的所有其他命令。像这样使用它:

...
FTPClient client = new FTPClient();
client.connect(host, port);
client.login(loginname, password);
client.deleteFile(fileNameOnServer);
client.disconnect();
...

答案 2

查看Apache commons-net。它有一个FTP客户端(以及其他东西)。


推荐