Jsp抓取頁面內容

來源:互聯網
上載者:User
  1. <%@ page contentType="text/html;charset=gb2312"%>  
  2. <%    
  3.   
  4. String sCurrentLine;    
  5.   
  6. String sTotalString;    
  7.   
  8. sCurrentLine="";    
  9.   
  10. sTotalString="";    
  11.   
  12. java.io.InputStream l_urlStream;    
  13.   
  14. java.net.URL l_url = new java.net.URL("http://www.baidu.com/");    
  15.   
  16. java.net.HttpURLConnection l_connection = (java.net.HttpURLConnection) l_url.openConnection();    
  17.   
  18. l_connection.connect();    
  19.   
  20. l_urlStream = l_connection.getInputStream();    
  21.   
  22. java.io.BufferedReader l_reader = new java.io.BufferedReader(new java.io.InputStreamReader(l_urlStream));    
  23.   
  24. while ((sCurrentLine = l_reader.readLine()) != null)    
  25.   
  26. {    
  27.   
  28. sTotalString+=sCurrentLine;    
  29.   
  30. }    
  31.   
  32.   
  33. %>  
  34. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  
  35. <html>  
  36.     <head>  
  37.         <meta http-equiv="pragma" content="no-cache">  
  38.         <meta http-equiv="cache-control" content="no-cache">  
  39.         <meta http-equiv="expires" content="0">  
  40.         <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">  
  41.         <meta http-equiv="description" content="This is my page">  
  42.     </head>  
  43. <body>  
  44.     <table align="center">  
  45.             <tr>  
  46.                 <td colspan="2">  
  47.                     <textarea name="content" id="content"  
  48.                         style="width: 500px; height: 300px;" rows="1" cols="20">  
  49.                         <%=sTotalString %>  
  50.                         </textarea>  
  51.                 </td>  
  52.             </tr>  
  53.         </table>  
  54. </body>  
  55. </html>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.