1. 다운로드 프로세스
인터넷에서 웹사이트의 리소스를 다운로드하려면 서버 리소스의 위치에 대한 설명인 URL(UniformResource Locator)을 받게 됩니다.
(1) 클라이언트는 URL에 대한 연결 요청을 시작합니다
(2) 서버는 URL을 구문 분석하고 지정된 리소스를 클라이언트의 입력 스트림으로 반환합니다.
(3) 클라이언트는 입력을 받습니다. 스트림에 콘텐츠를 스트리밍하고 저장합니다. 파일
2, 인스턴스
package com.hu.down; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.URL; public class DownFile { public final static boolean DEBUG = true; //调试用 private static int BUFFER_SIZE = 1024; //缓冲区大小 public void saveToFile(String destUrl){ BufferedInputStream bis = null; HttpURLConnection httpUrl = null; URL url = null; byte[] buf = new byte[BUFFER_SIZE]; try { url = new URL(destUrl); } catch (MalformedURLException e) { // TODO Auto-generated catch block System.out.println(destUrl+"资源URL语法错误,请检查字符串是否正确!"); return; } try { httpUrl = (HttpURLConnection) url.openConnection(); } catch (IOException e) { System.out.println("打开到 "+destUrl+"所引用的远程对象的连接失败"); } try { httpUrl.connect(); } catch (IOException e) { System.out.println("打开到此 "+destUrl+" 引用的资源的通信链接失败"); return; } try { bis = new BufferedInputStream(httpUrl.getInputStream()); } catch (IOException e) { System.out.println("取得连接的Input流失败"); return; } File file = new File("D:/upload" + destUrl.substring(destUrl.lastIndexOf("/"))); BufferedOutputStream fileOut=null; try { fileOut = new BufferedOutputStream(new FileOutputStream(file)); } catch (FileNotFoundException e) { System.out.println(file+"在本地保存文件失败"); e.printStackTrace(); } try{ while (true) { int bytesIn = bis.read(buf, 0, 1024); if (bytesIn == -1) { break; } else { fileOut.write(buf, 0, bytesIn); } } fileOut.flush(); fileOut.close(); }catch(Exception ee){ System.out.println(file+"保存文件过程失败"); } System.out.println(file.getAbsolutePath()+"下载完毕"); } public static void main(String[] args) throws IOException { DownFile d=new DownFile(); String youclass="11003080"; String baseUrl="http://photo/"+youclass; for(int i=301;i<=340;i++) { d.saveToFile(baseUrl+i+".jpg"); } } }
위 내용은 Java에서 Http 콘텐츠를 다운로드하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!