Enter your email address:

Delivered by FeedBurner


Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Reading Html code of all the url using java
12-19-2011, 06:17 PM
Post: #1
Wink Reading Html code of all the url using java
A simple tricky program that can read all the html codes of given url using java the following code does that

import java.net.*;
import java.io.*;

public class URLReader {
public static void main(String[] args) throws Exception {
URL yahoo = new URL("http://www.yahoo.com");
BufferedReader in = new BufferedReader(
new InputStreamReader(
yahoo.openStream()));

String inputLine;

while ((inputLine = in.readLine()) != null)
System.out.println(inputLine);

in.close();
}
}
Compile and run this java file give any url you want to read in here URL yahoo = new URL("http://www.yahoo.com");
Any doubt Ask us.

Happy coding
Find all posts by this user
Add Thank You Quote this message in a reply
Advertise here or at any positions around our site send a mail to info@walkinsforum.com
Post Reply 


[-]
Share/Bookmark (Show All)
Facebook Linkedin Technorati Twitter Digg MySpace Delicious

Possibly Related Threads...
Thread: Author Replies Views: Last Post
Tongue Students management java project download rajasri 25 2,290 05-15-2012 12:45 PM
Last Post: itischinmay
  shopping cart in jsp&java admin 6 1,072 04-13-2012 08:51 PM
Last Post: sushantkop
Sad java.sql.SQLException: General error solution rajasri 3 1,090 02-07-2012 03:05 PM
Last Post: shahbaz07dbit
Sad create a file from form input in java,jsp rajasri 0 258 12-19-2011 06:32 PM
Last Post: rajasri
Information create a war file using jsp code rajasri 0 195 12-19-2011 06:18 PM
Last Post: rajasri
Star pagination in jsp,java rajasri 0 238 12-19-2011 05:32 PM
Last Post: rajasri
Photo Tomcat not starting error code 0 rajasri 0 460 12-14-2011 02:04 PM
Last Post: rajasri
Music How to extract war file in java rajasri 0 2,887 12-14-2011 12:07 PM
Last Post: rajasri
Thumbs Up Solution for java.lang.NoClassDefFoundError: javax/transaction/Synchronization rajasri 0 1,013 12-14-2011 12:00 PM
Last Post: rajasri
Video How to use batch update in java and jsp rajasri 0 471 12-12-2011 11:38 PM
Last Post: rajasri

Forum Jump:


User(s) browsing this thread: 1 Guest(s)