Using Java to read web page
The following is the code for reading html content of a web page.
Using java to read web page is different from using Java to call IE to open web pages. The visitor count for a general blog can not increase in this way. To increase visitors count, you need a program that can call IE to open web page.
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.net.MalformedURLException; import java.net.URL; public class Main { public static void main(String[] args) { try { URL google = new URL("http://www.google.com/"); BufferedReader in = new BufferedReader(new InputStreamReader(google.openStream())); String inputLine; while ((inputLine = in.readLine()) != null) { // Process each line. System.out.println(inputLine); } in.close(); } catch (MalformedURLException me) { System.out.println(me); } catch (IOException ioe) { System.out.println(ioe); } }//end main } |
This is really at the bottom level. We can simply use Jsoup to do the same thing in a easier way.
<pre><code> String foo = "bar"; </code></pre>
-
asdasdda
-
surender
-
DD