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.
以上就是How to Upload url (http files) using Java to my web server?的详细内容,更多请关注web前端其它相关文章!