자바 url 에 따라 네트워크 자원 다운로드

URL:통합 자원 포 지 셔 닝 문자
예 를 들 면:https://www.baidu.com
URL[자원 포 지 셔 닝 문자 통일]:자원 을 포 지 셔 닝 하고 인터넷 의 특정한 자원 을 포 지 셔 닝 합 니 다.
DNS 도 메 인 이름 분석:www.baidu.com[특정한 도 메 인 이름]은 39.156.69.79[특정한 사이트 공간 IP]를 가리킨다.
URL 구성:프로 토 콜:/ip 주소:포트/프로젝트 이름/자원

package lesson04;

import java.net.MalformedURLException;
import java.net.URL;

/**
 * URL:       
 */
public class URLDemo1 {

 public static void main(String[] args) throws MalformedURLException {
  URL url = new URL("http://localhost:8080/helloworld/index.jsp?username=kuangshen&password=123");
  //   
  System.out.println(url.getProtocol());
  //   -  ip
  System.out.println(url.getHost());
  //  
  System.out.println(url.getPort());
  //  -    
  System.out.println(url.getPath());
  //  -   
  System.out.println(url.getFile());
  //    -  
  System.out.println(url.getQuery());
 }

}
URL 다운로드 자원

package lesson04;

import java.io.FileOutputStream;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;

/**
 * URL    
 */
public class URLDown {

 public static void main(String[] args) throws Exception {
  //1、    
  URL url = new URL("https://m10.music.126.net/20201121104035/2c5eb73ce4421a090b62647f6c486e2c/yyaac/obj/wonDkMOGw6XDiTHCmMOi/3625445007/7d37/4109/d0ef/d56e8176f5789a4e6f8b2173ce500bf6.m4a");

  //2、        HTTP
  HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();

  InputStream inputStream = urlConnection.getInputStream();

  FileOutputStream fos = new FileOutputStream("f6.m4a");

  byte[] buffer = new byte[1024];
  int len;
  while ((len = inputStream.read(buffer)) != -1){
   fos.write(buffer, 0, len); //      
  }

  //  
  fos.close();
  inputStream.close();

  //    
  urlConnection.disconnect();
 }

}
효과 일람

이상 은 자바 가 url 에 따라 네트워크 자원 을 다운로드 하 는 상세 한 내용 입 니 다.자바 가 네트워크 자원 을 다운로드 하 는 것 에 관 한 자 료 는 우리 의 다른 관련 글 에 관심 을 가 져 주 십시오!

좋은 웹페이지 즐겨찾기