java多线程下载图片_java多线程下载网络图片

import java.io.BufferedInputStream;

import java.io.BufferedOutputStream;

import java.io.BufferedReader;

import java.io.FileOutputStream;

import java.io.IOException;

import java.io.InputStream;

import java.io.InputStreamReader;

import java.net.MalformedURLException;

import java.net.URL;

import java.net.URLConnection;

import java.util.ArrayList;

import java.util.regex.Matcher;

import java.util.regex.Pattern;

public class ImageDown {

/**

* 下载图片

* @param str

*/

public static void downImage(String str) {

BufferedInputStream input = null;

BufferedOutputStream out = null;

URL url;

try {

url = new URL(str);

URLConnection conn;

conn = url.openConnection();

String[] strName = str.split("/");

String imageName = strName[strName.length - 1]; // 图片名

String imageUrl = "D:/" + imageName;

InputStream in = conn.getInputStream();

input = new BufferedInputStream(in);

out = new BufferedOutputStream(new FileOutputStream(imageUrl));

int len = 0;

while ((len = input.read()) != -1) {

out.write(len);

}

} catch (MalformedURLException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

} finally {

if (out != null) {

try {

out.close();

} catch (IOException e) {

e.printStackTrace();

}

}

if (input != null) {

try {

input.close();

} catch (IOException e) {

e.printStackTrace();

}

}

}

}

/**

* 获取路径

* @return

*/

public static ArrayList getUrl(){

ArrayList list= new ArrayList();

BufferedReader read=null;

try {

URL url = new URL("http://www.tupianzj.com/chuangyi/");

URLConnection conn = url.openConnection();

InputStream input = conn.getInputStream();

read = new BufferedReader(new InputStreamReader(input));//字符转换成字节

//http://img.tupianzj.com/uploads/allimg/160525/9-1605251F6280-L.jpg

Pattern pattern = Pattern.compile("http://\\w+\\.\\w+\\.com/\\w+/\\w+/\\d+/[0-9]-(\\w+\\d+|\\d+\\w+)([-][A-Z]\\.jpg|\\.jpg)");

String str=null;

while((str=read.readLine())!=null){

Matcher match = pattern.matcher(str);

if (match.find()) {

String imageUrl = match.group();

list.add(imageUrl);

}

}

} catch (MalformedURLException e) {

e.printStackTrace();

}catch (IOException e) {

e.printStackTrace();

}finally{

if (read!=null) {

try {

read.close();

} catch (IOException e) {

e.printStackTrace();

}

}

}

return list;

}

}

/**

* 开启多线程

* @author Administrator

*

*/

class downimage extends Thread{

String str;

public downimage(String str){

this.str=str;

}

@Override

public void run() {

BufferedInputStream input = null;

BufferedOutputStream out = null;

URL url;

try {

url = new URL(str);

URLConnection conn;

conn = url.openConnection();

String[] strName = str.split("/");

String imageName = strName[strName.length - 1]; // 图片名

String imageUrl = "D:/" + imageName;

InputStream in = conn.getInputStream();

input = new BufferedInputStream(in);

out = new BufferedOutputStream(new FileOutputStream(imageUrl));

int len = 0;

while ((len = input.read()) != -1) {

out.write(len);

}

} catch (MalformedURLException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

} finally {

if (out != null) {

try {

out.close();

} catch (IOException e) {

e.printStackTrace();

}

}

if (input != null) {

try {

input.close();

} catch (IOException e) {

e.printStackTrace();

}

}

}

}

}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值