Urltest.java
上传用户:xie_wn
上传日期:2022-03-04
资源大小:941k
文件大小:1k
源码类别:

网络截获/分析

开发平台:

Java

  1. package com.url;
  2. import java.io.FileInputStream;
  3. import java.io.FileOutputStream;
  4. import java.io.InputStream;
  5. import java.net.MalformedURLException;
  6. import java.net.URL;
  7. public class Urltest {
  8. /**
  9.  * @param args
  10.  * @throws Exception 
  11.  */
  12. public static void main(String[] args) throws Exception {
  13. // TODO Auto-generated method stub
  14.     URL url=new URL("http://sports.tom.com/uimg/2009/7/27/dongsheng/1248654595671_7033.jpg");
  15.     InputStream in=url.openConnection().getInputStream();
  16.     FileOutputStream out=new FileOutputStream("1.jpg");
  17.     byte[] b=new byte[1024*5];
  18.     int length=0;
  19.     while((length=in.read(b))!=-1)
  20.     {
  21.      out.write(b, 0, length);
  22.     }
  23.     out.flush();
  24.     in.close();
  25.     out.close();
  26. }
  27. }