COMP201 Java Programming Part II: GUI Programming Topic 11: Applets Chapter 10.

Slides:



Advertisements
Similar presentations
Introduction to Java 2 Programming Lecture 10 Applets.
Advertisements

Learn about Java applets. Know the differences between Java applets and applications. Designing and using Java applets Running Java applets. Security.
1 Chapter 17 Applets and Multimedia. 2 Motivations F When browsing the Web – you frequently see the graphical user interface –animation developed using.
1 Frameworks. 2 Framework Set of cooperating classes/interfaces –Structure essential mechanisms of a problem domain –Programmer can extend framework classes,
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Chapter 18 Applets and Multimedia.
Applets. The Applet Class public class MyApplet extends java.applet.Applet {... /** The no-arg constructor is called by the browser when the Web page.
Review of Java Applets Vijayan Sugumaran Decision and Information Sciences Oakland University.
Liang, Introduction to Java Programming, Fifth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 16 Applets.
1 Applets. 2 Motivations When browsing the Web, you frequently see the graphical user interface and animation developed using Java. These programs are.
1 Applets Chapter 1 To understand:  why applets are used to extend the capabilities of Web pages  how an applet is executed and know about the restrictions.
COMP201 Java Programming Part II: GUI Programming Topic 11: Applets Chapter 10.
Java Applets. Lecture Objectives Learn about Java applets. Know the differences between Java applets and applications. Designing and using Java applets.
Liang, Introduction to Java Programming, Fifth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 14 Applets, Images,
Liang, Introduction to Java Programming, Sixth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 16 Applets and Multimedia.
Applets. What is an Applet?  According to Sun “An applet is a small program that is intended not to be run on its own, but rather to be embedded inside.
EE2E1. JAVA Programming Lecture 10 Applets. Contents Introduction Introduction Web-servers and clients Web-servers and clients A simple example “Hello.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2007 Pearson Education, Inc. All rights reserved L05 (Chapter 16) Applets.
Applets  The Applet Class  The HTML Tag F Passing Parameters to Applets.
Applets Java API.
Java How to Program, 9/e © Copyright by Pearson Education, Inc. All Rights Reserved.
Chapter 12 Applets and Advanced Graphics  The Applet Class  The HTML Tag F Passing Parameters to Applets F Conversions Between Applications and Applets.
19-Sep-15 Air Force Institute of Technology Electrical and Computer Engineering Object-Oriented Programming Design Topic : Applets Maj Joel Young
JAVA APPLETS By: Ms. Humaira Siddiqui. Java and the Internet Java is considered to be a language well suited to be used in the internet. In contrast with.
Applets Chapter 17.  Java’s big splash onto the scene came in the mid 90’s. The people at Sun Microsystems had managed to work java programs into Web.
JAPPLET.
Applets Life Cycle Drawing and Event Handling Methods for UI Components Applet Capabilities Example.
Applets and Frames CS 21a: Introduction to Computing I First Semester,
1 Introduction to Applets. 2 Applications Programs that execute using the java interpreter Executes in command windows.
Chapter 17: Applets, Images, and Sound. Objectives Learn about applets Write an HTML document to host an applet Use the init() method Work with JApplet.
COMP201 Java Programming Part II: GUI Programming Topic 11: Applets Chapter 10.
Chapter 8 Introduction to HTML and Applets Fundamentals of Java.
Not all java code is an application! Applets, Webstart and Servlets Warning: this is just to show you where to look and some things to look for – by no.
Chapter 12 Applets and Advanced GUI  The Applet Class  The HTML Tag F Passing Parameters to Applets F Conversions Between Applications and Applets F.
Deployment via jars and Webstart. How do we distribute our application? Lab says you need to submit CD Lab says you need to submit CD Limitations of CD.
Chapter 10: Applets and Advanced Graphics The Applet Class The Applet Class The HTML Tag The HTML Tag Passing Parameters to Applets Passing Parameters.
Java Applets 1. What is an applet? An applet is a small Java program that is typically embedded in a Web page and can be run using the applet viewer or.
CSC 205 – Java Programming II Applet. Types of Java Programs Applets Applications Console applications Graphics applications Applications are stand-alone.
Pravin Yannawar, DOCS, NMU Jalgaon Basic Java : Applets 2 Objectives of This Session Identify the need for Applets Distinguish between Applets and Applications.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2007 Pearson Education, Inc. All rights reserved Chapter 16 Applets and Multimedia.
Proprietary & Confidential Java WebStart Created by Bob Hays.
Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved GUI: Applets and Multimedia.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2007 Pearson Education, Inc. All rights reserved Applets and Multimedia.
Chapter 6 Applets and HTML  Overview  HTML tags for Applets  Applet Life Cycle  Applet Class  JAR files.
CSE S. Tanimoto Java Introduction 1 Java A Programming Language for Web-based Computing with Graphics.
Applets and Frames. Copyright 2005, by the authors of these slides, and Ateneo de Manila University. All rights reserved L14: GUI Slide 2 Applets Usually.
Chapter 10: Applets and Advanced Graphics The Applet Class The Applet Class The HTML Tag The HTML Tag Passing Parameters to Applets Passing Parameters.
Chapter 14 Applets and Advanced GUI  The Applet Class  The HTML Tag F Passing Parameters to Applets F Conversions Between Applications and Applets F.
Intro to Applets. Applet Applets run within the Web browser environment Applets bring dynamic interaction and live animation to an otherwise static HTML.
Creating Applets. What is an applet? What is an applet? A Java program that runs in a web browser. A Java program that runs in a web browser. An applet.
1 Applets are small applications that are accessed on an Internet server, transported over the internet, automatically installed and run as a part of web.
1 Applets. 2 Design of Applets 3 Sun wrote Java to be executable within a hosting application browser The applications are applets. An applet is downloaded.
Applets, Images, and Audio Chapter 14 CSCI CSCI 1302 – Applets, Images, and Audio2 Outline Introduction The Applet Class –The init Method –The start.
Chapter 12: Accessing the Web URL (Uniform Resource Locator) class Applet methods –for audio clips –for images –context interface.
CSC 243 – Java Programming, Spring, 2014 April 22, 2014 Week 13, JApplets.
1 Applets. 2 What is an applet? Applet: a Java program that can be inserted into a web page and run by loading that page in a browser brings web pages.
Introduction to Applets Chapter 21. Applets An applet is a Java application that is intended to be invoked and executed through a Web browser. Click Here.
CHAPTER Agenda Applets Servelets Browsers HelloWorld.
1 Applets Programming. Introduction Java programs are divided into two main categories, applets and applications. An application is an ordinary Java program.
CS202 Java Object Oriented Programming GUI Programming – Applets Chengyu Sun California State University, Los Angeles.
Java Applets.
Chapter 17 Applets and Multimedia
30 Java Applets.
Applets.
UNIT-5.
Introduction to Computing Using Java
Java Applets.
Java applets 1/3/2019.
Applet in Java.
JAVA APPLET PREPARED BY Mr. Jahanzaib Ahmed
G6DICP - Lecture 27 Java Applets.
Presentation transcript:

COMP201 Java Programming Part II: GUI Programming Topic 11: Applets Chapter 10

COMP201 Topic 11 / Slide 2 Introduction l Applets are java programs that run within browsers l Example: n Jmol applet – n NASA 3D real-time satellite tracker – Applet Client BrowserServer Applet User

COMP201 Topic 11 / Slide 3 Outline l An example l Creation n Converting applications to applets l Transportation n Jar files: Move applets from servers to browsers quickly l Operation n Applet life cycle n Security restrictions n Getting resources from home n Communicating with browser Applet Client BrowserServer Applet User

COMP201 Topic 11 / Slide 4 An Example An applet is a Java class which extends java.applet.Applet If Swing components are used, the applet must extend from javax.swing.JApplet public class NotHelloWorldApplet extends JApplet { public void init() { Container contentPane = getContentPane(); JLabel label = new JLabel("Not a Hello, World applet", SwingConstants.CENTER); contentPane.add(label); } } //NotHelloWorldApplet.java

COMP201 Topic 11 / Slide 5 l Compile and run Compile: javac NotHelloWorldApplet.java n Run: –Create a HTML file that tells the browser which file to load and how to size the applet This is an example. This text shown if browser doesn’t do Java. –View the HTML file with a browser or the command appletviewer n Note: –Textpad: Cntrl+3 – creates a simple html file and show it with appletviewer An Example

COMP201 Topic 11 / Slide 6 An Example l More notes n To view applet, one needs Java 2 enabled browser (recent version of IE and Netscape, e.g. IE 6, Netscape 6, Netscape 7. Netscape 4 is not Java 2 enabled) n Class files are cached by browser. –Restart browser after each modification –Alternatively, one can clear the cache from Java console, which can be accessed from Netscape or control panel on Windows

COMP201 Topic 11 / Slide 7 An Example

COMP201 Topic 11 / Slide 8 l Compare with application: NotHelloWorld.java class NotHelloWorldFrame extends JFrame { public NotHelloWorldFrame() { setTitle("NotHelloWorld"); setSize(300, 200); Container contentPane = getContentPane(); JLabel label = new JLabel("Not a Hello, World application", SwingConstants.CENTER); contentPane.add(label); } public class NotHelloWorldApplication { public static void main(String[] args) { NotHelloWorldFrame frame = new NotHelloWorldFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.show(); }} An Example

COMP201 Topic 11 / Slide 9 l Applets are created, run, and destroyed by web browser n Don’t set size for an applet: determined by HTML file. n Don’t set title for an applet: applets cannot have title bars. –Can have menus. No need to explicitly construct an applet. Construction code placed inside the init method. There is no main method. n An applet cannot be closed. It terminates automatically when the browser exit. No need to call method show. An applet is displayed automatically. An Example

COMP201 Topic 11 / Slide 10 Outline l An example l Creation n Converting applications to applets l Transportation n Jar files: Move applets from servers to browsers quickly l Operation n Applet life cycle n Security restrictions n Getting resources from home n Communicating with browser

COMP201 Topic 11 / Slide 11 Creating Applets from Applications l Non-IO applications for now n Pop up window for application n Embed top-level frame of application inside browser

COMP201 Topic 11 / Slide 12 Creating Applets from Applications l Popping up a window for application. n Assume: Separate class for creating and showing a top-level frame. (If this class also does some other things, move the other things to other classes.) class NotHelloWorldFrame extends JFrame {…} public class NotHelloWorldApplication { public static void main(String[] args) { JFrame frame = new NotHelloWorldFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.show(); }

COMP201 Topic 11 / Slide 13 l Steps of conversion: n Delete the class for creating and showing the top-level frame Add an applet class whose init method contains the same instructions as main method of deleted class. n Remove code for closing window public class NHWApplet extends JApplet { public void init() { JFrame frame = new NotHelloWorldFrame(); frame.show(); } } //NHWApplet.java n The popup window coming with a warning message for security reasons, (which can be avoided for signed applets). Creating Applets from Applications

COMP201 Topic 11 / Slide 14 l Placing top-level frame of application inside browser. n Separate class for creating and showing a top-level frame. (If this class also does some other things, move the other things to other classes.) class NotHelloWorldFrame extends JFrame { public NotHelloWorldFrame() { setTitle("NotHelloWorld"); setSize(300, 200); Container contentPane = getContentPane(); JLabel label = new JLabel("Not a Hello, World applet", SwingConstants.CENTER); contentPane.add(label); }} public class NotHelloWorld { public static void main(String[ ] args) { NotHelloWorldFrame frame = new NotHelloWorldFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.show(); }} Creating Applets from Applications

COMP201 Topic 11 / Slide 15 l Steps of conversion n Delete the class for creating and showing the top-level frame n Convert the top-level frame class into an applet –JFrame class => JApplet class; must be public –Remove setSize: set in HTML file –Remove setTitle: Applet cannot have title bar –Replace constructor with init. Creating Applets from Applications

COMP201 Topic 11 / Slide 16 l Let’s do it now class NotHelloWorldFrame extends JFrame { public NotHelloWorldFrame() { setTitle("NotHelloWorld"); setSize(300, 200); Container contentPane = getContentPane(); JLabel label = new JLabel("Not a Hello, World applet", SwingConstants.CENTER); contentPane.add(label); }} public class NotHelloWorld { public static void main(String[ ] args) { NotHelloWorldFrame frame = new NotHelloWorldFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.show(); }} Creating Applets from Applications

COMP201 Topic 11 / Slide 17 Outline l An example l Creation n Converting applications to applets l Transportation n Jar files: Move applets from servers to browsers quickly l Operation n Applet life cycle n Security restrictions n Getting resources from home n Communicating with browser

COMP201 Topic 11 / Slide 18 Transportation of Applets via Jar Files l PopupCalculatorApplet involve three classes n CalculatorFrame.class, CalculatorPanel.class PopupCalculatorApplet.class l HTML file contains name of the applet class n l Class loader First fetches PopupCalculatorApplet.class In the process, it notices that some other classes are also needed. It then makes net connections to get them. n Many connections might be needed in general, especially when there are associated resources such as images and sounds.

COMP201 Topic 11 / Slide 19 Jar Files l Jar files n A jar file is simply a zip file that contains a manifest file, which describes features of the archive n Java Archive (JAR) files allow one to bundle a set of classes and resources into one file that can be downloaded via one net connection.

COMP201 Topic 11 / Slide 20 Jar Files l Creating jar files n jar cf PopupCalculatorAppletClasses.jar *class l In general: jar cf myJarFile.jar *.class *.gif pack all files ending with.class or.gif

COMP201 Topic 11 / Slide 21 Jar Files Refer to JAR files in the APPLET tag <APPLET CODE="PopupCalculatorApplet.class" ARCHIVE="PopupCalculatorAppletClasses.jar,swing.jar" WIDTH = 65 HEIGHT = 20 > l JAR file is downloaded via one net connection. l Class loader tries to find necessary files in JAR file before attempting to get them from the net.

COMP201 Topic 11 / Slide 22 Diversion/Self-Running Jar File l “To make an executable jar file, we need to indicate the main class in the manifest file. Create “mainclass.mf” with one line ( no “ class ” and ended by “ return ”) Main-Class: MyApplet n Create jar file with the manifest file jar cvfm MyJarFile.jar mainclass.mf *class n Also, one can update the manifest files of an existing jar file jar umf mainclass.mf MyJarFile.jar l Run: n java -jar MyJarFile.jar n Or click on file icon Self-Running Calculator

COMP201 Topic 11 / Slide 23 Outline l An example l Creation n Converting applications to applets l Transportation n Jar files: Move applets from servers to browsers quickly l Operation n Applet life cycle n Security restrictions n Getting resources from home n Communicating with browser

COMP201 Topic 11 / Slide 24 Applet Life Cycle l An application starts from main and runs until exit l Applets are controlled by browser through 4 methods n init() –Called when loaded by browser n start() –Called right after init and when user return to page n stop() –Called when user moves off page n destroy() –Called when browser shuts down. l Overwrite the methods to control applet behavior non-existenton page off page init( ) destroy( ) stop( ) destroy( )start( )

COMP201 Topic 11 / Slide 25 l public void init() n One-time initialization when first loaded n Good place to process parameters and add interface components. l public void start() n Called whenever user returns to the page containing the applet after having gone off to other pages. n Can be called multiple times. n Good place to resume animation or game Applet Life Cycle

COMP201 Topic 11 / Slide 26 l public void stop() n Called when user moves off page (to other pages) n Good place to stop time-consuming activities such as animation and audio playing. l public void destroy() n Called when browser shuts down. n Good place to reclaim non-memory-dependent resources such as graphics contexts. n Normally, no need to worry. l Example: sound (Stop Playing when going out of page) Compare with the one of the two other versions. Applet Life Cycle

COMP201 Topic 11 / Slide 27 Outline l An example l Creation n Converting applications to applets l Transportation n Jar files: Move applets from servers to browsers quickly l Operation n Applet life cycle n Security restrictions n Getting resources from home n Communicating with browser

COMP201 Topic 11 / Slide 28 Security Restrictions l Applets are downloaded from the net and executed by a browser’s JVM immediately. l User never gets a chance to confirm or to stop an applet from running. l Consequently, applets are restricted in what they can do. The applet security manager is responsible for enforcing access rules and throws an SecurityException when an access rule is violated.

COMP201 Topic 11 / Slide 29 Security Restriction l By default, an applet is restricted to run “inside the sandbox”. Strictest security restrictions. l Signed applets can have more access privileges. l For now, we consider only applets playing in the sandbox.

l Access rights for Applets and Java Applications (JA) BR: applets running inside a browser with default applet security model AV: applets running insider Applet viewer BR Read local file N Write local file N Get file info. N Delete file N Run another program N Read theuser.name property N Connect to network port on home server Y Connect to network port on other server N Load Java library N Call exit N Create a pop-up window warning AVJA YY YY YY NY YY YY YY YY YY YY YY

COMP201 Topic 11 / Slide 31 Outline l An example l Creation n Converting applications to applets l Transportation n Jar files: Move applets from servers to browsers quickly l Operation n Applet life cycle n Security restrictions n Getting resources from home n Communicating with browser Applet Client BrowserServer Applet User

COMP201 Topic 11 / Slide 32 Resources for Applets l One can provide information to applets in HTML file l Applets can access resources at home server: l Text l Multimedia

COMP201 Topic 11 / Slide 33 Passing Info to Applets via HTML File l In HTML file, use PARAM, NAME, VALUE tags …. In applet, use the getParameter method of the Applet class getParameter("title"); // returns "Diameters of the Planets “ String vString = getParameter(“values”); // returns “9” if (vString == null ) {do something} // precaution else int v=Integer.parseInt(vString);//must parse to get numbers Chart.java, Chart.html

COMP201 Topic 11 / Slide 34 Accessing Resources at Home Server l Where is home? Inside a subclass of Applet getDocumentBase returns URL of the html file that calls the applet getCodeBase returns URL of the applet itself Inside any other class x x.class gives one an object of the Class class that contain information of x. ( Class is a special class and has method getResource. C.f. Object class) x.class.getResource( resourceName ) returns URL of resource Need the URL class in java.net package import java.net.*

COMP201 Topic 11 / Slide 35 Accessing Text Files at Home Server Find the URL of text file and the create an InputStream using the openStream method of URL class InputStream in = url.openStream(); Or create an InputStream directly using the getResourceAsStream method of the Class class. InputStream in = x.class.getResoruceAsStream( fileName); The InputStream can be nested with other streams in the normal way (see Topic 4) ResourceTest.java, ResourceTest.html

COMP201 Topic 11 / Slide 36 l Applets can handle images in GIF or JPEG format l Load images Inside an subclass Applet, use getImage(url), getImage(url, name) Inside other classes java.awt.Toolkit Toolkit.getDefaultToolkit().getImage( url ); l How to show an image? ImageLoadApplet.java Accessing Images at Home Server Exercise: Load the images in applet class

COMP201 Topic 11 / Slide 37 l Applets can handle audio files in AU, AIFF, WAV, or MIDI format. Audio Clips (java.applet.Applet) Load: AudioClip getAudioClip(url), AudioClip getAudioClip(url, name) Then use play method of AudioClip to play and the stop method to stop Play without first loading: void play(url), void play(url, name) //SoundApplet.java Accessing Audio Files at Home Server

COMP201 Topic 11 / Slide 38 Outline l An example l Creation n Converting applications to applets l Transportation n Jar files: Move applets from servers to browsers quickly l Operation n Applet life cycle n Security restrictions n Getting resources from home n Communicating with browser Applet Client BrowserServer Applet User

COMP201 Topic 11 / Slide 39 Communication with Browser To establish a communication channel between an applet and browser, use the getAppletContext method of the Applet class The method returns an object of the AppletContext, which is an interface. Two useful methods of interface AppletContext showDocument( URL url ) showDocument(URL url, String target ) ShowPageApplet.java

COMP201 Topic 11 / Slide 40 Java Web Start l A technology for simplifying deployment of Java applications n Gives you the power to launch full-featured applications with a single click from your Web browser. n The Java Web Start software is the reference implementation for the Java Network Launching Protocol (JNLP) n

COMP201 Topic 11 / Slide 41 Java Web Start l What do you need? n Jar files that contain class files & resources. n A jnlp file for the application n A link from the Web page to the JNLP file n Configure the Web server so that the.jnlp file extension invokes Web Start.( ebsite) ebsite l Client side: n Install Java Web Start, included in Download J2SE 5.0 JRE/SDK (jdk1.5.1) Download J2SE 5.0 JRE/SDK

COMP201 Topic 11 / Slide 42 Java Web Start l Example 1 (javaWebStartExamples.zip): n NotHelloWorld.jar generated from NotHelloWorld.java n NotHelloWorld.jnlp See next page n index.html NotHelloWorld Application

COMP201 Topic 11 / Slide 43 Java Web Start n NotHelloWorld.jnlp <jnlp codebase=" href="NotHelloWorld.jnlp"> NotHelloWorld Application Sun Microsystems, Inc. NotHelloWorld Application A demo of nothing useful

COMP201 Topic 11 / Slide 44 Java Web Start l Unlike applets, web-start applications have a main() like normal Java applications. There are a few special requirements: l The application must be contained in a jar file l By default restricted to Sandbox as Applets (cannot call standard IO libaries to access the disk, you can only connect back the source host etc). l Resources (files, images) must also be in a jar file and must be accessed using the getResource() method. l Like applets users can grant more access if they trust your code l A JNLP API is required for some applications.

COMP201 Topic 11 / Slide 45 Java Web Start l Web-start applications differ from applets in several ways: n They are stored in the local disk so do not need to be downloaded each time. n They can call System.exit(). n They do not have the same lifecycle. n A web-start application can use a special class library which allows the application to prompt users to approve reading and writing to/from the local disk. n Rather than HMTL tags in a web-page, XML (JNLP) is used to describe web-start applications.

COMP201 Topic 11 / Slide 46 Java Web Start l Example 2: ImageTest n ImageTest.java –Loading image using the getResource method n ImageTest.jar –Includes class files & image files n ImageTest.jnlp n Index.html ImageTest Application