Tutorial by Examples

A very simple applet draws a rectangle and prints a string something on the screen. public class MyApplet extends JApplet{ private String str = "StackOverflow"; @Override public void init() { setBackground(Color.gray); } @Override public void de...
Applets could easily be used to create a GUI. They act like a Container and have an add() method that takes any awt or swing component. public class MyGUIApplet extends JApplet{ private JPanel panel; private JButton button; private JComboBox<String> cmbBox; private JText...
You can use the method getAppletContext() to get an AppletContext object that allows you to request the browser to open a link. For this you use the method showDocument(). Its second parameter tells the browser to use a new window _blank or the one that shows the applet _self. public class MyLinkAp...
Java applets are able to load different resources. But since they are running in the web browser of the client you need to make sure that these resources are accessible. Applets are not able to access client resources as the local file system. If you want to load resources from the same URL the App...

Page 1 of 1