首页 > 代码库 > URLConnection/案例
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/案例
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。