JAVA抓取一個HTML原始碼

來源:互聯網
上載者:User
  1.   
  2. package com.hyq.src;   
  3.   
  4. import java.io.InputStream;   
  5. import java.net.URL;   
  6.   
  7.   
  8. public class Test {   
  9.        
  10.     /**  
  11.      * @param args  
  12.      */  
  13.     public static void main(String[] args) {   
  14.         try{   
  15.             Test.testNetStream();   
  16.         }catch(Exception e){   
  17.             e.printStackTrace();   
  18.         }   
  19.     }    
  20.     public static void testNetStream()throws Exception{   
  21.         URL url=new URL("http://www.imust.cn/");   
  22.         InputStream in=url.openStream();   
  23.         byte[] b=new byte[100000];   
  24.         in.read(b);   
  25.         in.close();   
  26.         String s=new String(b);   
  27.         System.out.println(s);   
  28.     }   
  29. }  
package com.hyq.src;import java.io.InputStream;import java.net.URL;public class Test {/** * @param args */public static void main(String[] args) {try{Test.testNetStream();}catch(Exception e){e.printStackTrace();}} public static void testNetStream()throws Exception{URL url=new URL("http://www.imust.cn/");InputStream in=url.openStream();byte[] b=new byte[100000];in.read(b);in.close();String s=new String(b);System.out.println(s);}}

Java代碼  
  1.   
  2. package com.hyq.src;   
  3.   
  4. import java.io.BufferedReader;   
  5. import java.io.InputStreamReader;   
  6. import java.net.URL;   
  7. import java.net.URLConnection;   
  8.   
  9.   
  10.   
  11. public class Test {   
  12.        
  13.     public static void main(String[] args)   
  14.     {   
  15.         System.out.println(Test.getHtmlSource("http://sports.163.com/zc/"));   
  16.     }   
  17.        
  18.     public static String getHtmlSource(String url){   
  19.         StringBuffer stb=new StringBuffer();   
  20.         try{   
  21.             URLConnection uc=new URL(url).openConnection();   
  22.             BufferedReader br=new BufferedReader(new InputStreamReader(uc.getInputStream(),"gb2312"));   
  23.             String temp=null;   
  24.             while((temp=br.readLine())!=null){   
  25.                 stb.append(temp).append("\n");   
  26.             }   
  27.             br.close();   
  28.                
  29.         }catch(Exception e){   
  30.             e.printStackTrace();   
  31.         }   
  32.         return stb.toString();   
  33.            
  34.     }   
  35.   
  36.        
  37. }  
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.