Java JOptionPane Message browse(String url, Component msgParent)

Here you can find the source of browse(String url, Component msgParent)

Description

Opens the given website in the default browser, or shows a message saying that no default browser could be accessed.

License

Open Source License

Declaration

public static void browse(String url, Component msgParent) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.awt.Component;

import java.awt.Desktop;
import java.awt.Desktop.Action;

import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;

import javax.swing.JOptionPane;

public class Main {
    /**/*  w w  w .  j  ava  2  s .  co m*/
     * Opens the given website in the default browser, or shows a message saying
     * that no default browser could be accessed.
     */
    public static void browse(String url, Component msgParent) {
        boolean error = false;

        if (Desktop.isDesktopSupported() && Desktop.getDesktop().isSupported(Action.BROWSE)) {
            try {
                Desktop.getDesktop().browse(new URI(url));
            } catch (URISyntaxException ex) {
                throw new RuntimeException(ex);
            } catch (IOException ex) {
                error = true;
            }
        } else {
            error = true;
        }

        if (error) {
            String msg = "Impossible to open the default browser from the application.\nSorry.";
            JOptionPane.showMessageDialog(msgParent, msg);
        }
    }
}

Related

  1. alert(Component component, String title, String msg)
  2. askPassword(String message)
  3. browse(String url, Component msgParent)
  4. chooseIndex(String message, String messageTitle, Object[] objects, Object initialObject)
  5. chooseObject(String message, String messageTitle, Object[] objects, Object initialObject)
  6. copyToClipBoard(String code, boolean displayMessage)
  7. createPane(Component comp, String msg)