Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Method returning default browser as a String?

Is there a method that will return a user's default browser as a String?

Example of what I am looking for:

System.out.println(getDefaultBrowser()); // prints "Chrome"
like image 802
syb0rg Avatar asked Apr 06 '13 15:04

syb0rg


People also ask

How do I make python my Default browser?

How do I make python my default browser from a website? Using the web browser in Python Under most circumstances, simply calling the open() function from this module will open url using the default browser . You have to import the module and use open() function.

How do I make Java my Default browser?

Follow these steps to check the setting: Click Tools > Internet Options > Advanced. Find the checkbox that says, Use Java for <applet>.

How do I find my Default browser in C#?

The value of HKEY_CURRENT_USER\Software\Clients\StartMenuInternet should give you the default browser name for this user. You can use the name found in HKEY_CURRENT_USER to identify the default browser in HKEY_LOCAL_MACHINE and then find the path that way.


1 Answers

You can accomplish this method by using registries[1] and regular expressions to extract the default browser as a string. There isn't a "cleaner" way to do this that I know of.

public static String getDefaultBrowser()
{
    try
    {
        // Get registry where we find the default browser
        Process process = Runtime.getRuntime().exec("REG QUERY HKEY_CLASSES_ROOT\\http\\shell\\open\\command");
        Scanner kb = new Scanner(process.getInputStream());
        while (kb.hasNextLine())
        {
            // Get output from the terminal, and replace all '\' with '/' (makes regex a bit more manageable)
            String registry = (kb.nextLine()).replaceAll("\\\\", "/").trim();

            // Extract the default browser
            Matcher matcher = Pattern.compile("/(?=[^/]*$)(.+?)[.]").matcher(registry);
            if (matcher.find())
            {
                // Scanner is no longer needed if match is found, so close it
                kb.close();
                String defaultBrowser = matcher.group(1);

                // Capitalize first letter and return String
                defaultBrowser = defaultBrowser.substring(0, 1).toUpperCase() + defaultBrowser.substring(1, defaultBrowser.length());
                return defaultBrowser;
            }
        }
        // Match wasn't found, still need to close Scanner
        kb.close();
    } catch (Exception e)
    {
        e.printStackTrace();
    }
    // Have to return something if everything fails
    return "Error: Unable to get default browser";
}

Now whenever getDefaultBrowser() is called, the default browser for Windows should be returned.

Tested browsers:

  • Google Chrome (function returns "Chrome")
  • Mozilla Firefox (function returns "Firefox")
  • Opera (function returns "Opera")

Explanation of the regex (/(?=[^/]*$)(.+?)[.]):

  • /(?=[^/]*$) matches the last occurring / in the string
  • [.] matches the . in the file extension
  • (.+?) captures the string between those two matched characters.

You can see how this is captured by looking at the value of registry right before we test it against the regex (I've bolded what is being captured):

(Default) REG_SZ "C:/Program Files (x86)/Mozilla Firefox/firefox.exe" -osint -url "%1"


[1] Windows only. I don't have access to a Mac or Linux computer, but from looking around the Internet, I think com.apple.LaunchServices.plist stores the default browser value on a Mac, and on Linux I think you can execute the command xdg-settings get default-web-browser to get the default browser. I could be wrong on that though, maybe someone with access to those would be willing to test for me and comment on how to implement them?

like image 78
syb0rg Avatar answered Oct 05 '22 11:10

syb0rg