java从网络路径下载图片到本地

public  String download(String _url){
		String picpath ="";
		try {
			// 构造URL
			URL url = new URL(_url);
			// 打开连接
			URLConnection con = url.openConnection();
			// 设置请求超时为5s
			con.setConnectTimeout(5 * 1000);
			// 输入流
			InputStream is = con.getInputStream();

			// 1K的数据缓冲
			byte[] bs = new byte[1024];
			// 读取到的数据长度
			int len;
			String path  = "F:\\pic2018\\zhutu";
			// 输出的文件流
			File sf = new File(path);
			if (!sf.exists()) {
				sf.mkdirs();
			}
			picpath = path+"\\lala"+".jpg";
			OutputStream os = new FileOutputStream(picpath);
			// 开始读取
			while ((len = is.read(bs)) != -1) {
				os.write(bs, 0, len);
			}
			// 完毕,关闭所有链接
			os.close();
			is.close();

		} catch (IOException e) {
			e.printStackTrace();
		}
		return picpath;
	}

 

你可能感兴趣的:(Java学习之路)