Hi everyone,
Currently i am trying to connect to a site using ftp
using the below method to upload a file
URL url = new URL("ftp://user01:pass1234@ftp.foo.com/README.txt;type=i");
URLConnection urlc = url.openConnection();
OutputStream os = urlc.getOutputStream(); // To upload
Now my question is how from java can i create or delete a directory as
well as create or delete a file using ftp?
Is there also a way i can just connect to a ftp site say ftp.foo.com
without specifying the file name so that i can connect to the ftp site
first, create a file first then go to that file?
Any help is greatly appreciated
Thank You
Yours Sincerely
Richard West
Tor Iver Wilhelmsen - 25 Nov 2006 18:02 GMT
> URL url = new URL("ftp://user01:pass1234@ftp.foo.com/README.txt;type=i");
> URLConnection urlc = url.openConnection();
> OutputStream os = urlc.getOutputStream(); // To upload
The "builtin" FTP protocol handler is just for retrieval. You need a
proper FTP library to actually do FTP client actions like upload and
the like.
Arne Vajhøj - 25 Nov 2006 18:15 GMT
> Currently i am trying to connect to a site using ftp
> using the below method to upload a file
[quoted text clipped - 9 lines]
> without specifying the file name so that i can connect to the ftp site
> first, create a file first then go to that file?
http://jakarta.apache.org/commons/net/ has flexible FTPClient.
Arne