1 2 import java.awt.*; 3 import java.awt.event.*; 4 import javax.swing.*; 5 import java.net.*; 6 import java.io.*; 7 8 void jButton2_actionPerformed(ActionEvent e) { 9 try { 10 // Create a URL for the image's location 11 URL url = new URL("http://www.DevSuperPage.com/favicon.ico"); 12 // Get the image 13 14 Image image = Toolkit.getDefaultToolkit().createImage(url); 15 16 this.setIconImage(image); 17 } catch (MalformedURLException e1) { 18 } catch (IOException e1) { 19 } 20 21 } 22