vote up 0 vote down star

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

flag

0% accept rate

2 Answers

vote up 6 vote down

Use Apaches FTPClient. Its much easier

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

FTPClient.rename(String from, String to);
link|flag
vote up 2 vote down

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.

link|flag
Even if your answer is right and must be underlined, the answer of Tommy is more helpful in my opinion. – furtelwart Jul 31 at 11:23
Well the quesrion wasn't how to rename using FTPClient, it was how to rename using java.net.URL, but fair enough. – skaffman Jul 31 at 11:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.