Java/jsp Learning Series 11 (simple "Grab page" code)

Source: Internet
Author: User
js| Page One, preface

From a website, see a "Grab page" code, feel a little meaning, but did not provide the source code, so, they want to write a, in fact, the code is relatively simple.

Second, the Code

<%@ page contenttype= "text/html;charset=gb2312"%>

<%

String Scurrentline;

String stotalstring;

Scurrentline= "";

Stotalstring= "";

Java.io.InputStream L_urlstream;

Java.net.URL L_url = new Java.net.URL ("http://www.163.net/");

Java.net.HttpURLConnection l_connection = (java.net.HttpURLConnection) l_url.openconnection ();

L_connection.connect ();

L_urlstream = L_connection.getinputstream ();

Java.io.BufferedReader L_reader = new Java.io.BufferedReader (new Java.io.InputStreamReader (L_urlstream));

while ((Scurrentline = L_reader.readline ())!= null)

{

Stotalstring+=scurrentline;

}

Out.println (stotalstring);

%>

Third, PostScript

Although the code is relatively simple, however, I think that according to this, you can achieve the "web crawler" function, such as from the page to find an HREF connection, and then get the connection, and then "catch", do not stop (of course, can limit the number of layers), so that the "web search" function can be achieved.


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.