Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-24-2007, 08:37 PM
Java Tip's Avatar
Moderator
 
Join Date: Nov 2007
Posts: 1,691
Rep Power: 5
Java Tip will become famous soon enoughJava Tip will become famous soon enough
Default Opening URLConnection
URLConnection is required to play with the contents of the web page. Following code snippet opens URLConnection for the given website.
Code:
try {
  URL u = new URL("http://www.cricinfo.com/");
  URLConnection uc = u.openConnection( );
}
catch (MalformedURLException ex) {
  System.err.println(ex);
}
catch (IOException ex) {
  System.err.println(ex);
}
Bookmark Post in Technorati
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Opening a workspace twice javaplus Eclipse 0 01-08-2008 10:56 AM
Opening multiple Eclipse eva Eclipse 1 01-02-2008 10:53 PM
Problem in opening a file Raghav kv New To Java 1 08-11-2007 02:55 PM
job opening for java architect athira Jobs Offered 0 07-26-2007 01:10 PM
Jr. J2EE Developer opening (Indianapolis) pegitha Jobs Offered 0 04-24-2007 10:45 PM


All times are GMT +2. The time now is 04:42 AM.



VBulletin, Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2009, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org