Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Java > Java and JDK > Java Basics
|
Java Basics General beginning Java language questions that don't fit in one of the more specific forums. Please specify what version.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Java Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old March 10th, 2013, 11:59 AM
Registered User
 
Join Date: Mar 2013
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default How to open the url using java program.

Hi,
I'm need to develop one exe which should open the website given as input to the program. Please help me develop this or give your valuable ideas.
 
Old April 10th, 2014, 12:13 PM
Registered User
 
Join Date: Apr 2014
Posts: 4
Thanks: 0
Thanked 1 Time in 1 Post
Default

Hey there mate. Here it goes.

Code:
import java.awt.Desktop;
import java.net.URI;
public class BrowseURL {

    public static void main(String args[]) throws Exception{

     // Create desktop object
        Desktop desktop=Desktop.getDesktop();

    // Browse a URL
       desktop.browse(new URI("http://google.com"));
      } 
}
Cheers ;)
The Following User Says Thank You to ratedam For This Useful Post:





Similar Threads
Thread Thread Starter Forum Replies Last Post
Open url like http://noida.saamstesting.com Manoj Bisht ASP.NET 3.5 Professionals 7 June 2nd, 2009 12:41 PM
How to Open Url [email protected] C# 2005 3 November 21st, 2007 05:14 PM
I am not able to open my reports in with URL sha_shivani Reporting Services 2 June 12th, 2007 01:49 AM
I am notable to open my reports through URL sha_shivani BOOK: Professional SQL Server 2005 Reporting Services ISBN: 0-7645-8497-9 1 May 10th, 2007 04:14 PM
Open email program speedyH ASP.NET 1.x and 2.0 Application Design 7 June 9th, 2004 11:41 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.