Facebook killed the radio star. And by radio star, I mean the premise of distributed forums around the internet. And that got got by Instagram/SnapChat. And that got got by TikTok. Where the fuck is the internet we once knew?
0 Members and 1 Guest are viewing this topic.
/** * This file is distributed under the GPL * $Id: URLDownloader.java 716 2007-09-26 20:34:47Z scotta $ */package net.bnubot.util;import java.io.BufferedInputStream;import java.io.DataInputStream;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.net.URL;/** * @author sanderson * */public class URLDownloader { public static void downloadURL(URL url, File to, boolean force) throws IOException { // Don't download the file if it already exists if(to.exists() && (force == false)) return; // Make sure the path to the file exists { String sep = System.getProperty("file.separator"); String folders = to.getPath(); String path = ""; for(int i = 0; i < folders.length(); i++) { path += folders.charAt(i); if(path.endsWith(sep)) { File f = new File(path); if(!f.exists()) f.mkdir(); if(!f.isDirectory()) { Out.error(URLDownloader.class, path + " is not a directory!"); return; } } } } Out.info(URLDownloader.class, "Downloading " + url.toExternalForm()); DataInputStream is = new DataInputStream(new BufferedInputStream(url.openStream())); FileOutputStream os = new FileOutputStream(to); byte[] b = new byte[0x1000]; do { int c = is.read(b); if(c == -1) break; os.write(b, 0, c); } while(true); os.close(); is.close(); }}