/*
* 使用URL下载指定的文件保存到指定的文件夹中。
* 类 URL 代表一个统一资源定位符,它是指向互联网“资源”的指针。
* 资源可以是简单的文件或目录,也可以是对更为复杂的对象的引用,
* 例如对数据库或搜索引擎的查询。
*/
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.URL;
import java.net.URLConnection;
public class URLDemo {
public static void main(String[] args) {
try {
DownLoadUtil.download("指定的网站", "保存的文件名", "保存到指定地方");
} catch (IOException e) {
e.printStackTrace();
}
}
}
class DownLoadUtil{
public static void download
(String urlString,String fileName,String savePath)throws IOException {
URL url=new URL(urlString);
/* URLConnection conn=url.openConnection();
InputStream is=conn.getInputStream();*/
//使用一条指令代替上面的两条指令
InputStream is=url.openStream();
byte[] buff=new byte[1024];
int len=0;
//读操作
File file=new File(savePath);
if (!file.exists()) {
file.mkdirs();
}
//写操作
OutputStream os=new FileOutputStream(file.getAbsolutePath()+"\\"+fileName);
//一边读一边写
while ((len=is.read(buff))!=-1) {
os.write(buff, 0, len);//把读到写到指定的数组里面
//释放资源
os.close();
is.close();
}
}
}