Package net.i2p.apps.systray
Class UrlLauncher
- java.lang.Object
- 
- net.i2p.apps.systray.UrlLauncher
 
- 
- All Implemented Interfaces:
- ClientApp
 
 public class UrlLauncher extends Object implements ClientApp A quick and simple multi-platform URL launcher. It attempts to launch the default browser for the host platform first, then popular third-party browsers if that was not successful.Handles Galeon, Internet Explorer, Konqueror, Links, Lynx, Mozilla, Mozilla Firefox, Netscape, Opera, and Safari. - Author:
- hypercubus
 
- 
- 
Constructor SummaryConstructors Constructor Description UrlLauncher()Constructor from SysTrayUrlLauncher(I2PAppContext context, ClientAppManager mgr, String[] args)ClientApp constructor used from clients.config
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDisplayName()ClientApp interfaceStringgetName()ClientApp interfaceClientAppStategetState()ClientApp interfacestatic voidmain(String[] args)Obsolete, now uses ClientApp interfacebooleanopenUrl(String url)Discovers the operating system the installer is running under and tries to launch the given URL using the default browser for that platform; if unsuccessful, an attempt is made to launch the URL using the most common browsers.booleanopenUrl(String url, String browser)Opens the given URL with the given browser.voidshutdown(String[] args)ClientApp interfacevoidstartup()ClientApp interface As of 0.9.46, stops immediately if JVM is a Windows or Linux Service.
 
- 
- 
- 
Constructor Detail- 
UrlLauncherpublic UrlLauncher(I2PAppContext context, ClientAppManager mgr, String[] args) ClientApp constructor used from clients.config- Parameters:
- mgr- null OK
- args- URL in args[0] or null args for router console
- Since:
- 0.9.18
 
 - 
UrlLauncherpublic UrlLauncher() Constructor from SysTray- Since:
- 0.9.18
 
 
- 
 - 
Method Detail- 
openUrlpublic boolean openUrl(String url) throws IOException Discovers the operating system the installer is running under and tries to launch the given URL using the default browser for that platform; if unsuccessful, an attempt is made to launch the URL using the most common browsers. As of 0.9.46, fails immediately if JVM is a Windows or Linux Service. BLOCKING. This repeatedly probes the server port at the given url until it is apparently ready.- Parameters:
- url- The URL to open.
- Returns:
- trueif the operation was successful, otherwise- false.
- Throws:
- IOException
 
 - 
openUrlpublic boolean openUrl(String url, String browser) throws IOException Opens the given URL with the given browser. As of 0.9.38, the browser parameter will be parsed into arguments separated by spaces or tabs. %1, if present, will be replaced with the url. Arguments may be surrounded by single or double quotes if they contain spaces or tabs. There is no mechanism to escape quotes or other chars with backslashes. As of 0.9.46, fails immediately if JVM is a Windows or Linux Service. BLOCKING. However, this does NOT probe the server port to see if it is ready.- Parameters:
- url- The URL to open.
- browser- The browser to use. See above for quoting rules.
- Returns:
- trueif the operation was successful, otherwise- false.
- Throws:
- IOException
 
 - 
startuppublic void startup() ClientApp interface As of 0.9.46, stops immediately if JVM is a Windows or Linux Service.
 - 
getStatepublic ClientAppState getState() ClientApp interface
 - 
getNamepublic String getName() ClientApp interface
 - 
getDisplayNamepublic String getDisplayName() ClientApp interface- Specified by:
- getDisplayNamein interface- ClientApp
- Returns:
- non-null
- Since:
- 0.9.18
 
 - 
shutdownpublic void shutdown(String[] args) ClientApp interface
 - 
mainpublic static void main(String[] args) Obsolete, now uses ClientApp interface
 
- 
 
-