Tutorials Point


  Java Basics Examples
  Java Tutorial
  Java Useful Resources
  Selected Reading

© 2011 TutorialsPoint.COM


  Home     References     Discussion Forums     About TP  

Java Examples - Downloading a Webpage


previous next AddThis Social Bookmark Button


Problem Description:

How to read and download a webpage?

Solution:

Following example shows how to read and download a webpage URL() constructer of net.URL class.

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.InputStreamReader;
import java.net.URL;

public class Main {
   public static void main(String[] args) 
   throws Exception {
      URL url = new URL("http://www.google.com");
      BufferedReader reader = new BufferedReader
      (new InputStreamReader(url.openStream()));
      BufferedWriter writer = new BufferedWriter
      (new FileWriter("data.html"));
      String line;
      while ((line = reader.readLine()) != null) {
         System.out.println(line);
         writer.write(line);
         writer.newLine();
      }
      reader.close();
      writer.close();
   }
}

Result:

The above code sample will produce the following result.

Welcome to Java Tutorial
	Here we have plenty of examples for you!
	
	Come and Explore Java!


previous next Printer Friendly



  

Advertisement

Online Image Processing

Indian Baby Names