> Hi all,
> Does java hav an inbuilt api for ftp?
Java has built-in support for ftp protocol and URLs. For example:
URL url = new URL("ftp://ftp.someserver.com/bla");
// ....
See the javadoc of class java.net.URL for more info how to proceed.

Signature
"Thomas:Fritsch$ops:de".replace(':','.').replace('$','@')
Simon OUALID - 16 Jul 2005 10:35 GMT
Or maybe apache jakarta's commons network libraries :
http://jakarta.apache.org/commons/net/
Symon
>> Hi all,
>> Does java hav an inbuilt api for ftp?
[quoted text clipped - 3 lines]
> // ....
> See the javadoc of class java.net.URL for more info how to proceed.
> Does java hav an inbuilt api for ftp?
I've never used the URL class for any FTP access (as the other poster
suggests), but I have enjoyed using the Apache Commons Net library in the
past. It's easy to use, and has many more features than any URL class will
have....