I'm trying make a several uploads to my web server. I want to upload files that are at a specific web site, like all *.jpg files, so I started trying. this kind of code, using FTP, URL and Object File.
UploaderDownloader up = new UploaderDownloader();
URL url = new URL("http://i1.nyt.com/images/2011/05/22/magazine/22moth_cover/22moth_cover-moth.jpg");
File file = new File(url.getFile());
up.upload("127.0.0.1", "USER", "PASSWORD", "/testeUploader/132.jpg",file);
but this doesn't work for me. So, I'm looking to discover how implement this using the best choices. upload a url file that isn't at my PC to a web server.