import java.io.BufferedOutputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.URL; public class ImagesDownloader { public static void main(String[] args) throws IOException { getImages(); } private static void getImages() throws IOException { String imagesRootPath = "http://somemanga.com/images2/"; // http://somemanga.com/images2/13342848.jpg // http://i999.mangareader.net/naruto/538/naruto-2251381.jpg for (int i = 13342848; i <= 13342848+9; i++) { URL url = new URL(String.format("%s%d.jpg", imagesRootPath, i)); InputStream in = url.openStream(); OutputStream out = new BufferedOutputStream(new FileOutputStream(String.format("D:/exam/RMI Assignment update/%d.jpg", i))); for (int b; (b = in.read()) != -1; ) { out.write(b); } out.close(); in.close(); System.out.println(String.format("Image %d.jpg from folder %s has been successfully downloaded.", i,imagesRootPath )); } } }
Friday, May 13, 2011
Image Downloader source code in Java and Manga downloader
Subscribe to:
Post Comments (Atom)
PDFScanner RS - Scan, Make PDF
PDF Scanner RS – Capture, Resize, Enhance & Create PDFs Download: https://play.google.com/store/apps/details?id=com.rssoft.pdfscan...
(2).png)
-
Server #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <...
-
There is none who can replace him.At least the standard which he create in is life time in the running literature it never be replaceable.Th...
-
ISSUE: Build error on Asterik , when you want test webrtc feature :) checking for uuid_generate_random in -luuid... no checking for uuid...
No comments:
Post a Comment