码迷,mamicode.com
首页 > Web开发 > 详细

URLConnection/案例

时间:2017-05-14 14:54:57      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:input   puts   com   style   pac   tput   java.net   nbsp   java   

package zuihou;

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;

public class DownLoad {
    public static void main(String[] args) throws IOException {
        
URL url=new URL("http://588ku.com/banner/4694318.html");
URLConnection conn=url.openConnection();
InputStream is=conn.getInputStream();
BufferedReader br=new BufferedReader(new InputStreamReader(is));
//FileOutputStream fos=new FileOutputStream("d:/abc.html");
//byte[]b=new byte[100];
//int i=-1;
//while((i=is.read(b))!=-1){
//    fos.write(b,0,i);
//}
//fos.close();

String str=null;
while((str=br.readLine())!=null){
    System.out.println(str);
}
is.close();
    }

}

 

URLConnection/案例

标签:input   puts   com   style   pac   tput   java.net   nbsp   java   

原文地址:http://www.cnblogs.com/zyy1130/p/6852473.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!