tags:

views:

46

answers:

3

i need the source code of an application that can upload and download automatically from the remote computer (FTP) using java language. thanks

A: 

How about SimpleFTP?

And here is a nice archive.

mosg
Simple FTP does not support downloads. The second link is not free. That might not be an issue, but it should be specified.
Romain Hippeau
A: 

The following site describes four different options for doing FTP client ops in Java.

http://www.nsftools.com/tips/JavaFtp.htm

Romain Hippeau
+1  A: 

Have a look at Apache Commons Net

Bozhidar Batsov