URLConnection/案例

Posted 苏轼的红烧肉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了URLConnection/案例相关的知识,希望对你有一定的参考价值。

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/案例的主要内容,如果未能解决你的问题,请参考以下文章

安卓案例:利用URLConnection下载音乐

安卓案例:利用URLConnection下载图片

安卓案例:利用URLConnection下载图片

安卓案例:利用URLConnection下载网页

安卓案例:利用URLConnection下载音乐

没有调用 URLConnection 委托方法