1 / 19

Applets

Applets. The Applet Class The <applet> HTML Tag Passing Parameters to Applets. HelloWorld Applet. // This application program prints “Hello World!” public class HelloWorld { public static void main (String[] args) { System.out.println(”Hello World ”); } }

gormley
Download Presentation

Applets

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Applets • The Applet Class • The <applet> HTML Tag • Passing Parameters to Applets

  2. HelloWorld Applet // This application program prints “Hello World!” public class HelloWorld { public static void main(String[] args) { System.out.println(”Hello World ”); } } // This applet prints “Hello World!” import java.awt.*; import java.applet.*; public class HelloWorldApplet extends Applet { public void paint(Graphics g) { g.drawString(”Hello, World!”); } }

  3. Applications vs. Applets • Similarities • Since they both are subclasses of the Container class, all the user interface components, layout managers, and event-handling features are the same for both classes. • Differences • Applications are invoked by the Java interpreter, and applets are invoked by the Web browser. • Applets have security restrictions • Web browser creates graphical environment for applets, GUI applications are placed in a frame.

  4. Security Restrictions on Applets • Applets are not allowed to read from, or write to, the file system of the computer viewing the applets. • Applets are not allowed to run any programs on the browser’s computer. • Applets are not allowed to establish connections between the user’s computer and another computer except with the server wherethe applets are stored.

  5. Conversions Between Applications and Applets Conversions between applications and applets are simple and easy. • You can convert an applet into an application. • You can convert an application to an applet as long as security restrictions are not violated.

  6. The Applet Class public void init() public void start() public void stop() public void destroy() public void paint(Graphics g) public void update(Graphics g)

  7. Browser Calling Applet Methods

  8. The init() Method • Invoked when the applet is first loaded and again if the applet is reloaded. • Common functions implemented in this method include creating threads, loading images, setting up user-interface components, and getting parameters from the <applet> tag in theHTML page.

  9. The start() Method • Invoked after the init() method is executed; also called whenever the applet becomes active again after a period of inactivity (for example, when the user returns to the page containing the applet after surfing other Web pages). • Functionality might include restarting threads(for example, to resume an animation) or simply telling the applet to run again.

  10. The stop() Method • The opposite of the start() method, which is called when the user moves back to the page containing the applet; the stop() method is invoked when the user moves off the page. • When the user leaves the page, any threads the applet has started—but not completed—will continue to run.

  11. The destroy() Method • Invoked when the browser exits normally to inform the applet that it is no longer needed and that it should release any resources it has allocated. • Usually, you will not need to override this method unless you need to release specific resources, such as threads that the applet created.

  12. The paint() Method public void paint(Graphics g) is invoked to redraw the graphical representation of the applet.

  13. The update() Method • Override update(Graphics g) method to avoid flickering effect. public void update(Graphics g) { // do something } public void paint(Graphics g) { update(g); }

  14. Example Applets • Geocoordinates conversion: http://www.cs.joensuu.fi/~koles/utm/utm.html • Vector map visualization: http://www.cs.joensuu.fi/~koles/svf/svf.html • Electronic Documents Management (EDM): http://www.cs.joensuu.fi/~koles/edm/edm2.html

  15. Writing Applets • Always extends theAppletclassor extends theJAppletclass, which is a subclass of Applet for Swing components. • Overrideinit(), start(), stop(), anddestroy() if necessary. By default, these methods are empty. • Add your own methods and data if necessary. • Applets are always embedded in an HTML page.

  16. The <applet> HTML Tag <applet code=classfilename.class width=applet_viewing_width_in_pixels height=applet_viewing_height_in_pixels [archive=archivefile] [codebase=applet_url] [vspace=vertical_margin] [hspace=horizontal_margin] [align=applet_alignment] [alt=alternative_text] > <param name=param_name1 value=param_value1> </applet>

  17. Passing Parameters to Applets <applet code = ”MyApplet.class" width = 200 height = 50> alt="You must have a Java-enabled browser to view the applet" <param name=MESSAGE value=”Hello world!"> <param name=X value=20> <param name=Y value=20> </applet>

  18. Parsing Parameters in Applet public class MyApplet extends Applet { private String message = “default message”; private int x = 10; private int y = 10; public void init() { message = getParameter(“MESSAGE”); try { x = Integer.parseInt(getParameter(“X”)); y = Integer.parseInt(getParameter(“Y”)); } catch(Exception e) { … } } }

  19. Examples of Applets • See code and applet on web: http://www.cs.armstrong.edu/liang/introjb4.html • See more examples of applets on web: http://www.dgp.toronto.edu/~mjmcguff/learn/java/

More Related