tags:

views:

897

answers:

2

Hi ,

I wanted know

How to rename a file in ftp server using java.

I am using java.net.URL to connect to the server

Thanks

+2  A: 

In the name of all that's holy, don't try and write your own FTP client.

Use Apache Commons Net, it comes with an FTP client class for you to use.

skaffman
Even if your answer is right and must be underlined, the answer of Tommy is more helpful in my opinion.
furtelwart
Well the quesrion wasn't how to rename using FTPClient, it was how to rename using java.net.URL, but fair enough.
skaffman
+5  A: 

Use Apaches FTPClient. Its much easier

http://commons.apache.org/net/

FTPClient.rename(String from, String to);
Tommy