Here you can find the source of downloadUrlToFile(URL url, File file)
Parameter | Description |
---|---|
url | URL to download |
file | File to which to write downloaded data |
Parameter | Description |
---|---|
IOException | an exception |
public static void downloadUrlToFile(URL url, File file) throws IOException
//package com.java2s; /*//from w w w .jav a2s . c om * The Shepherd Project - A Mark-Recapture Framework * Copyright (C) 2011 Jason Holmberg * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.net.URL; public class Main { /** * Downloads the byte contents of a URL to a specified file. * @param url URL to download * @param file File to which to write downloaded data * @throws IOException */ public static void downloadUrlToFile(URL url, File file) throws IOException { BufferedInputStream is = null; BufferedOutputStream os = null; try { is = new BufferedInputStream(url.openStream()); os = new BufferedOutputStream(new FileOutputStream(file)); byte[] b = new byte[4096]; int len = -1; while ((len = is.read(b)) != -1) os.write(b, 0, len); os.flush(); } finally { if (os != null) os.close(); if (is != null) is.close(); } } }