I have banner an I wont to put it in my javaFX application. And when user click on the image open default browser.
try {
            String path = "http://developer.am/webservice/banner728x90.gif";
            URL url = new URL(path);
            BufferedImage image = ImageIO.read(url);
            label = new JLabel(new ImageIcon(image));
        } catch (Exception exp) {
            exp.printStackTrace();
        }
also I am trying to convert above code from awt in JavaFX
 
     
    