[tuxdroid-svn] r5708 - software_suite_v3/software/plugin/plugin-facebook/branches/october_release/s
Status: Beta
Brought to you by:
ks156
|
From: jerome <c2m...@c2...> - 2009-10-16 09:11:06
|
Author: jerome Date: 2009-10-16 11:10:53 +0200 (Fri, 16 Oct 2009) New Revision: 5708 Removed: software_suite_v3/software/plugin/plugin-facebook/branches/october_release/src/BareBonesBrowserLaunch.java Log: * Removed browser launcher. Deleted: software_suite_v3/software/plugin/plugin-facebook/branches/october_release/src/BareBonesBrowserLaunch.java =================================================================== --- software_suite_v3/software/plugin/plugin-facebook/branches/october_release/src/BareBonesBrowserLaunch.java 2009-10-16 09:04:39 UTC (rev 5707) +++ software_suite_v3/software/plugin/plugin-facebook/branches/october_release/src/BareBonesBrowserLaunch.java 2009-10-16 09:10:53 UTC (rev 5708) @@ -1,52 +0,0 @@ -///////////////////////////////////////////////////////// -// Bare Bones Browser Launch // -// Version 1.5 // -// December 10, 2005 // -// Supports: Mac OS X, GNU/Linux, Unix, Windows XP // -// Example Usage: // -// String url = "http://www.centerkey.com/"; // -// BareBonesBrowserLaunch.openURL(url); // -// Public Domain Software -- Free to Use as You Like // -///////////////////////////////////////////////////////// - -import java.lang.reflect.Method; - -public class BareBonesBrowserLaunch -{ - - @SuppressWarnings("unchecked") - public static void openURL(String url) - { - String osName = System.getProperty("os.name"); - try - { - if (osName.startsWith("Mac OS")) - { - Class fileMgr = Class.forName("com.apple.eio.FileManager"); - Method openURL = fileMgr.getDeclaredMethod("openURL", - new Class[] {String.class}); - openURL.invoke(null, new Object[] {url}); - } - else if (osName.startsWith("Windows")) - Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler " + url); - else - { //assume Unix or Linux - String[] browsers = { - "firefox", "opera", "konqueror", "epiphany", "mozilla", "netscape" }; - String browser = null; - for (int count = 0; count < browsers.length && browser == null; count++) - if (Runtime.getRuntime().exec( - new String[] {"which", browsers[count]}).waitFor() == 0) - browser = browsers[count]; - if (browser == null) - throw new Exception("Could not find web browser"); - else - Runtime.getRuntime().exec(new String[] {browser, url}); - } - } - catch (Exception e) - { - } - } -} - |