© 2010 Pearson Addison-Wesley. All rights reserved. Addison Wesley is an imprint of Chapter 14: Applets and More Starting Out with Java: From Control Structures.

Slides:



Advertisements
Similar presentations
Graphics You draw on a Graphics object The Graphics object cannot directly be created by your code, instead one is generated when the method paintComponent.
Advertisements

Graphics Chapter 16.  If you want to draw shapes such as a bar chart, a clock, or a stop sign, how do you do it?
Java Graphics Section 1 - Multi-File Graphics Programs Section 2 - The Coordinate System and Graphics Context g Section 3 - The Java Drawing and Painting.
1 Frameworks. 2 Framework Set of cooperating classes/interfaces –Structure essential mechanisms of a problem domain –Programmer can extend framework classes,
1 A Simple Applet. 2 Applets and applications An application is an “ordinary” program Examples: Notepad, MS Word, Firefox, Halo, etc. An applet is a Java.
Chapter Day 5. © 2007 Pearson Addison-Wesley. All rights reserved2-2 Agenda Day 5 Questions from last Class?? Problem set 1 Posted  Introduction on developing.
Lecture 24 Applets. Introduction to Applets Applets should NOT have main method but rather init, stop, paint etc They should be run through javac compiler.
 2003 Prentice Hall, Inc. All rights reserved. 1 Chapter 3 - Introduction to Java Applets Outline 3.1 Introduction 3.2 Sample Applets from the Java 2.
©The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Topics  Applets  Classes used for graphics Graphics Point Dimension.
1 Introduction to Applets Overview l What is an Applet? l Steps for creating an applet l What is HTML? l Basic HTML tags l Drawing Simple Graphical shapes.
Liang, Introduction to Java Programming, Fifth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 16 Applets.
18-Jun-15 Applets. 2 An applet is a program that is typically embedded in a Web page and can be run from a browser You need special HTML in the Web page.
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.
Chapter 14 Applets. 2 Knowledge Goals Understand the differing roles of applications and applets Understand how a browser operates Understand the role.
COMP 14: Applets June 21, 2000 Nick Vallidis. Announcements zP6 is due Friday.
Java Applets. Road Map Introduction to Java Applets Review applets that ship with JDK Make our own simple applets –Introduce inheritance –Introduce the.
Liang, Introduction to Java Programming, Fifth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 14 Applets, Images,
©The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 4 th Ed Chapter Chapter 5 Java Graphics Applets.
Chapter 3 - Introduction to Java Applets Outline 3.1Introduction 3.2Thinking About Objects 3.4A Simple Java Applet: Drawing a String 3.5Two More Simple.
28-Jun-15 Applets. 2 An applet is a program that is typically embedded in a Web page and can be run from a browser You need special HTML in the Web page.
A Simple Applet.
Chapter 13: Advanced GUIs and Graphics J ava P rogramming: From Problem Analysis to Program Design, From Problem Analysis to Program Design, Second Edition.
Java Review Structure of a graphics program. Computer Graphics and User Interfaces Java is Object-Oriented A program uses objects to model the solution.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2007 Pearson Education, Inc. All rights reserved L05 (Chapter 16) Applets.
Applets, HTML and GUI’s Recitation – 04/11/2008 CS 180 Department of Computer Science, Purdue University.
Java Programming, 2E Introductory Concepts and Techniques Chapter 2 Creating a Java Application and Applet.
Applets Java API.
20-753: Fundamentals of Web Programming Copyright © 1999, Carnegie Mellon. All Rights Reserved. 1 Lecture 16: Java Applets & AWT Fundamentals of Web Programming.
Chapter 13 Advanced GUIs and Graphics. Chapter Objectives Learn about applets Explore the class Graphics Learn about the class Font Explore the class.
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.
Java Programming: From Problem Analysis to Program Design, 4e Chapter 12 Advanced GUIs and Graphics.
JAPPLET.
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.
Chapter 8 Introduction to HTML and Applets Fundamentals of Java.
Chapter 12 Applets and Advanced GUI  The Applet Class  The HTML Tag F Passing Parameters to Applets F Conversions Between Applications and Applets F.
Chapter 13. Applets and HTML HTML Applets Computer Programming with JAVA.
Chapter 10: Applets and Advanced Graphics The Applet Class The Applet Class The HTML Tag The HTML Tag Passing Parameters to Applets Passing Parameters.
Timer Objects  regularly generates action events at programmer-specified time intervals  Timer class is in javax.swing package  Timer (int delay, ActionListener.
Applets Applet is java program that can be embedded into HTML pages. Java applets runs on the java enabled web browsers such as mozilla and internet explorer.
1 A Simple Applet. 2 Applets and applications An application is an “ordinary” program Examples: Notepad, MS Word, Firefox, Halo, etc. An applet is a Java.
Graphic User Interface. Graphic User Interface (GUI) Most of us interact with computers using GUIs. GUIs are visual representations of the actions you.
Lec.10 + (Chapter 8 & 9) GUI Java Applet Jiang (Jen) ZHENG July 6 th, 2005.
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Outline 21.1 Test-Driving the Painter Application.
(C) 2010 Pearson Education, Inc. All rights reserved.  Class Graphics (from package java.awt) provides various methods for drawing text and shapes onto.
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.
Field Trip #23 Hangman By Keith Lynn. JApplet A JApplet is a top-level container An applet is a small Java program that is executed by another program.
Chapter 131 Applets and HTML Chapter Objectives learn how to write applets learn to write a simple HTML document learn how to embed an applet in.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
8 Chapter Eight Server-side Scripts. 8 Chapter Objectives Create dynamic Web pages that retrieve and display database data using Active Server Pages Process.
Copyright © Curt Hill Applets A different type of program.
Applets Java code is compiled into byte code instead of machine language –Languages like C, C++, Pascal and others are compiled into machine language so.
Creating a Java Application and Applet
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.
Rina System development with Java Instructors: Rina Zviel-Girshin Lecture 10.
CHAPTER 14 Applets and More Copyright © 2016 Pearson Education, Inc., Hoboken NJ.
1 Applets Programming. Introduction Java programs are divided into two main categories, applets and applications. An application is an ordinary Java program.
CHAPTER 14 Applets and More Copyright © 2016 Pearson Education, Ltd.
CPCS 391 Computer Graphics Lab One. Computer Graphics Using Java What is Computer Graphics: Computer graphics are graphics created using computers and,
Chapter 14 Applets. Applets: Introduction Java programs are divided into two main categories, applets and applications An application is an ordinary Java.
Prepared by: Dr. Abdallah Mohamed, AOU-KW Unit7: Event-driven programming 1.
Chapter 14 Applets and More. 2 Contents I. Introduction to Applets II. A Brief Introduction to HTML III. Creating Applets with Swing IV. Using AWT for.
Applets.
Distributed Computing, M. L. Liu
Distributed Computing, M. L. Liu
4.14 GUI and Graphics Case Study: Creating Simple Drawings (Cont.)
UNIT-5.
Chapter 14: Applets and More
Java Applets.
Presentation transcript:

© 2010 Pearson Addison-Wesley. All rights reserved. Addison Wesley is an imprint of Chapter 14: Applets and More Starting Out with Java: From Control Structures through Objects Fourth Edition by Tony Gaddis

© 2010 Pearson Addison-Wesley. All rights reserved Chapter Topics Chapter 14 discusses the following main topics: –Introduction to Applets –A Brief Introduction to HTML –Creating Applets with Swing –Using AWT for Portability –Drawing Shapes –Handling Mouse and Key Events –Timer Objects –Playing Audio

© 2010 Pearson Addison-Wesley. All rights reserved Introduction to Applets There are two types of programs you can create with Java: –applications –applets. An application is a stand-alone program that runs on your computer. Applets are Java programs that are usually part of a Web site. If a user opens the Web site with a Java-enabled browser, the applet is executed inside the browser window.

© 2010 Pearson Addison-Wesley. All rights reserved Introduction to Applets It appears to the user that the applet is part of the Web site. Applets are stored on a Web server along with the site’s Web pages. Applets associated with a viewed web page are transmitted to the user’s system. Once the applets are transmitted, the user’s system executes them. Applets can be used to extend the capabilities of a Web page.

© 2010 Pearson Addison-Wesley. All rights reserved Introduction to Applets Web pages are normally written in Hypertext Markup Language (HTML). HTML is static content; whereas, applets are dynamic. An applet does not have to be on a web server in order to be executed. –They can be stored on the local computer.

© 2010 Pearson Addison-Wesley. All rights reserved Applet Limitations Applets run on the user’s system, not the server. For security purposes, applets can not: –access the local computer file system, –run any other program on the user’s system. –execute operating system procedures. –retrieve information about the user or their system. –make network connections with any system except the server from which the applet was transmitted. –run anonymously. If an applet displays a window, it will automatically have a message such as “Warning: Applet Window” displayed in it.

© 2010 Pearson Addison-Wesley. All rights reserved Introduction to HTML Hypertext Markup Language (HTML) is the language that Web pages are written in. –Hypertext can contain a link to other content on the web page, or another web page. –A Markup Language allows you to “mark up” a text file by inserting special instructions. These instructions tell the browser how to format the text and create any hypertext links. To make a web page, create a text file: –that contains HTML instructions (known as tags), –the text that should be displayed on the Web page, and –typically has a.html file extension.

© 2010 Pearson Addison-Wesley. All rights reserved Introduction to HTML This document is called an HTML document. The tags instruct the browser: –how to format the text, –where to place images, –what to do when the user clicks on a link, etc. Most HTML tags have an opening tag and a closing tag. – Text The tags are enclosed in angle brackets ( ). The closing tag is preceded by a forward slash (/).

© 2010 Pearson Addison-Wesley. All rights reserved Document Structure Tags The tag marks the beginning and ending of an HTML document. The tag marks the document head, a section containing information about the document. The document head contains the tag, which is contains the title of the document. Example: BasicWebPage1.htmlBasicWebPage1.html

© 2010 Pearson Addison-Wesley. All rights reserved Document Structure Tags After the document head comes the tag. The document body contains all of the tags and text that produce output in the browser. Example: BasicWebPage2.htmlBasicWebPage2.html

© 2010 Pearson Addison-Wesley. All rights reserved Text Formatting Tags There are many HTML tags that you can use to change the appearance of text. For example, there are six different header tags. – through A level one header appears in boldface, and is much larger than regular text. A level two header also appears in boldface, but is smaller than a level one header. This pattern continues with the other header tags.

© 2010 Pearson Addison-Wesley. All rights reserved Text Formatting Tags Many tags allow an align attribute to be used to modify where the text shows on the web page: – Text An old way of centering text is to use the tag to center a line of text. You can display text: –in boldface, and italics. Example: BasicWebPage3.htmlBasicWebPage3.html

© 2010 Pearson Addison-Wesley. All rights reserved Breaks in Text The tag causes a line break to appear at the point in the text where it is inserted. Browsers usually ignore the newline characters that are created when you press the Enter key. The tag causes a paragraph break. –A paragraph break typically inserts more space into the text than a line break.

© 2010 Pearson Addison-Wesley. All rights reserved Breaks in Text The tag causes a horizontal rule to appear at the point in the text where it is inserted. A horizontal rule is a thin, horizontal line that is drawn across the web page. Example: BasicWebPage4.htmlBasicWebPage4.html

© 2010 Pearson Addison-Wesley. All rights reserved HTML Links A link is some element in a Web page that can be clicked on by the user. The tag that is used to insert a link has the following general format: – Text The Text that appears between the opening and closing tags is the text that will be displayed in the web page. The web resource that is located at Address will be displayed in the browser.

© 2010 Pearson Addison-Wesley. All rights reserved HTML Links This address is a uniform resource locator (URL). The address is enclosed in quotation marks. Example: – Click here to go to the textbook's web site. Example: LinkDemo.htmlLinkDemo.html

© 2010 Pearson Addison-Wesley. All rights reserved Creating Applets With Swing Applets are very similar to the GUI applications. Instead of displaying its own window, an applet appears in the browser’s window. The differences between GUI application code and applet code are: –A GUI application class is derived from JFrame. –An applet class is derived from JApplet. The JApplet class is part of the javax.swing package. –A GUI application class has a constructor that creates other components and sets up the GUI. –An applet class does not normally have a constructor. Instead, it has a method named init that performs the same operations as a constructor.

© 2010 Pearson Addison-Wesley. All rights reserved Creating Applets With Swing The differences are (continued): –The following methods are not called in an applet: super setSize setDefaultCloseOperation pack setVisible –No main method is needed to create an Applet object. The browser creates an instance of the class automatically. Example: –SimpleApplet.javaSimpleApplet.java –SimpleApplet.htmlSimpleApplet.html

© 2010 Pearson Addison-Wesley. All rights reserved Running an Applet The process of running an applet is different from that of running an application. To run an applet, create an HTML document with an APPLET tag, which has the following general format: <applet code="Filename.class" width="width_value" height="height_value"> Don’t forget the closing angle bracket. Attributes should be enclosed in quotes.

© 2010 Pearson Addison-Wesley. All rights reserved Running an Applet Filename.class is the compiled bytecode of the applet, not the.java file. You can optionally specify a path along with the file name. If you specify only the file name, it is assumed that the file is in the same directory as the HTML The browser: –loads specified byte code, and –executes it in an area that is the size specified by the width_value and height_value.

© 2010 Pearson Addison-Wesley. All rights reserved Using appletviewer The appletviewer program loads and executes an applet without the need for a Web browser. When running the program, specify the name of an HTML document as a command line argument. appletviewer SimpleApplet.html This command executes any applet referenced by an APPLET tag in the file SimpleApplet.html. If the document has more than one APPLET tag, it will execute each applet in a separate window.

© 2010 Pearson Addison-Wesley. All rights reserved Applet Event Handling Events in applets are handled with event listeners exactly as they are in GUI applications. Example: –TempConverter.javaTempConverter.java –TempConverter.htmlTempConverter.html

© 2010 Pearson Addison-Wesley. All rights reserved Using AWT for Portability AWT is the original library that has been part of Java since its earliest version. Swing is an improved library that was introduced with Java 2. Some browsers do not directly support the Swing classes in applets. These browsers require a plug-in to run swing applets. This plug-in is automatically installed on a computer when the Java SDK is installed.

© 2010 Pearson Addison-Wesley. All rights reserved Using AWT for Portability Other people running applets might not have the required plug-in. The AWT classes can be used instead of the Swing classes for the components in the applet. The AWT component classes: –there is a corresponding AWT class for each of the Swing classes covered so far. –The names of the AWT classes names do not start with the letter J. Example: –AWTTempConverter.java, TempConverter.htmlAWTTempConverter.javaTempConverter.html

© 2010 Pearson Addison-Wesley. All rights reserved Drawing Shapes Components have an associated Graphics object that may be used to draw lines and shapes. Java allows drawing of lines and graphical shapes such as rectangles, ovals, and arcs. Frame or panels can become a canvas for your drawings.

© 2010 Pearson Addison-Wesley. All rights reserved XY Coordinates The location of each pixel in a component is identified with an X coordinate and a Y coordinate. The coordinates are usually written in the form (X, Y). Unlike Cartesian coordinates, the upper-left corner of a drawing area (0, 0). The X coordinates increase from left to right, and the Y coordinates increase from top to bottom. When drawing a line or shape on a component, you must indicate its position using X and Y coordinates.

© 2010 Pearson Addison-Wesley. All rights reserved Graphics Objects Each component has an internal object that is derived from the Graphics class, which is part of the java.awt package. This object has numerous methods for drawing graphical shapes on the surface of the component.

© 2010 Pearson Addison-Wesley. All rights reserved Graphics Objects Some of the methods of the Graphics class: –setColor(Color c) – Sets the drawing color for this object. –getColor() – Returns the current drawing color for this object. –drawLine(int x1, int y1, int x2, int y2) – Draws a line on the component –drawRect(int x, int y, int width, int height) – Draws the outline of a rectangle on the component. –fillOval(int x, int y, int width, int height) – Draws a filled oval. –drawString(String str, int x, int y) – Draws the string passed into str using the current font.

© 2010 Pearson Addison-Wesley. All rights reserved Graphics Objects In order to call these methods, you must get a reference to a component’s Graphics object. One way to do this is to override the paint method. You can override the paint method in any class that is derived from: –JApplet –JFrame –Any AWT class The paint method is responsible for displaying, or “painting,” a component on the screen.

© 2010 Pearson Addison-Wesley. All rights reserved Graphics Objects The paint method is automatically called –when the component is first displayed and –any time the component needs to be redisplayed. The header for the paint method is: public void paint(Graphics g) The method’s argument is a Graphics object, which is automatically passed by the calling component. Overriding the paint method, allows drawing of graphics on the Graphics object argument. Example: LineDemo.java, LineDemo.htmlLineDemo.javaLineDemo.html

© 2010 Pearson Addison-Wesley. All rights reserved Graphics Objects The Graphics object argument is responsible for drawing the entire applet window. It is advisable to call the base class paint method passing the Graphics object, g, as an argument: super.paint(g); g.setColor(Color.red); g.drawLine(20, 20, 280, 280); This is a red diagonal line drawn from the top-left area of the applet window to the bottom-right area.

© 2010 Pearson Addison-Wesley. All rights reserved Rectangles Rectangles can be drawn or filled. g.drawRect(10, 10, 50, 50); g.fillRect(10, 10, 50, 50); The fillRect and drawRect take four integers as parameters: drawRect(int x, int y, int width, int height) Example: –RectangleDemo.javaRectangleDemo.java –RectangleDemo.htmlRectangleDemo.html

© 2010 Pearson Addison-Wesley. All rights reserved Ovals and Bounding Rectangles Ovals are created by drawing the oval inside of a “bounding rectangle”. This rectangle is invisible to the viewer of the Graphics object. g.fillOval(x, y, width, height); (x,y) Width Height Example: OvalDemo.java OvalDemo.html OvalDemo.java OvalDemo.html

© 2010 Pearson Addison-Wesley. All rights reserved Arcs Arcs are drawn from the 90 degree position counterclockwise and can be filled or unfilled g.drawArc(0, 20, 120, 120, 0, 90); g.fillArc(0, 20, 120, 120, 0, 90); The fillArc and drawArc take six integers as parameters: drawArc(int x, int y, int width, int height, int start, int end) Example: –ArcDemo.javaArcDemo.java –ArcDemo.htmlArcDemo.html

© 2010 Pearson Addison-Wesley. All rights reserved Polygons Polygons are drawn using arrays of integers representing x, y coordinates int[]xCoords={60,100,140,140,100,60,20,20}; int[]yCoords={20,20,60,100,140,140,100,60};

© 2010 Pearson Addison-Wesley. All rights reserved Polygons The fillPolygon and drawPolygon use the arrays as parameters: Example: –PolygonDemo.javaPolygonDemo.java –PolygonDemo.htmlPolygonDemo.html

© 2010 Pearson Addison-Wesley. All rights reserved The repaint Method We do not call a component’s paint method. It is automatically called when the component must be redisplayed. We can force the application or applet to call the paint method. repaint(); The repaint method clears the surface of the component and then calls the paint method.

© 2010 Pearson Addison-Wesley. All rights reserved Drawing on Panels To draw on a panel, get a reference to the panel’s Graphics object and use that object’s methods. The resulting graphics are drawn only on the panel. Getting a reference to a JPanel component’s Graphics object is similar to previous examples. Instead of overriding the JPanel object’s paint method, override its paintComponent method. This is true for all Swing components except JApplet and JFrame.

© 2010 Pearson Addison-Wesley. All rights reserved Drawing on Panels The paintComponent method serves the same purpose as the paint method. When it is called, the component’s Graphics object is passed as an argument. public void paintComponent(Graphics g) When overriding this method, first call the base class’s paintComponent method. super.paintComponent(g);

© 2010 Pearson Addison-Wesley. All rights reserved Drawing on Panels After this you can call any of the Graphics object’s methods to draw on the component. Example: –GraphicsWindow.java,GraphicsWindow.java –DrawingPanel.java,DrawingPanel.java –GraphicsWindow.htmlGraphicsWindow.html

© 2010 Pearson Addison-Wesley. All rights reserved Handling Mouse Events The mouse generates two types of events: –mouse events and mouse motion events. Any component derived from the Component class can handle events generated by the mouse. To handle mouse events you create: –a mouse listener class and/or –a mouse motion listener class.

© 2010 Pearson Addison-Wesley. All rights reserved Handling Mouse Events A mouse listener class can respond to any of the follow events: –The mouse button is pressed. –The mouse button is released. –The mouse button is clicked on (pressed, then released without moving the mouse). –The mouse cursor enters a component’s screen space. –The mouse cursor exits a component’s screen space. A mouse listener class must implement the MouseListener interface.

© 2010 Pearson Addison-Wesley. All rights reserved Mouse Listener Methods public void mousePressed(MouseEvent e) –called if the mouse button is pressed over the component. public void mouseClicked(MouseEvent e) –called if the mouse is pressed and released over the component without moving the mouse. public void mouseReleased(MouseEvent e) –called when the mouse button is released. public void mouseEntered(MouseEvent e) –called when the mouse cursor enters the screen area of the component. public void mouseExited(MouseEvent e) –This method is called when the mouse cursor leaves the screen area of the component.

© 2010 Pearson Addison-Wesley. All rights reserved Mouse Events The MouseEvent object contains data about the mouse event. getX and getY are two common methods of the MouseEvent class. They return the X and Y coordinates of the mouse cursor when the event occurs. Once a mouse listener class is created, it can be registered with a component using the addMouseListener method

© 2010 Pearson Addison-Wesley. All rights reserved Mouse Motion Events The appropriate methods in the mouse listener class are automatically called when their corresponding mouse events occur. A mouse motion listener class can respond to the following events: –The mouse is dragged –The mouse moved. A mouse motion listener class must implement the MouseMotionListener interface and it’s methods.

© 2010 Pearson Addison-Wesley. All rights reserved Mouse Motion Listener Methods public void mouseDragged(MouseEvent e) –called when a dragging operation begins over the component. The mousePressed method is always called just before this method. public void mouseMoved(MouseEvent e) –called when the mouse cursor is over the component and it is moved. Example: –MouseEvents.javaMouseEvents.java –MouseEvents.htmlMouseEvents.html

© 2010 Pearson Addison-Wesley. All rights reserved Using Adapter Classes The mouse listener class must implement all of the methods required by the interfaces they implement. If any of the methods are omitted, a compiler error results. The MouseAdapter and MouseMotionAdapter classes provide empty implementations of the methods. They can serve as base classes for mouse listener and mouse motion listener classes. Examples: DrawBoxes.java, DrawBoxes.html, DrawBoxes2.java, DrawBoxes2.htmlDrawBoxes.javaDrawBoxes.htmlDrawBoxes2.java DrawBoxes2.html

© 2010 Pearson Addison-Wesley. All rights reserved Timer Objects Timer objects automatically generate action events at regular time intervals. This is useful when you want a program to: –perform an operation at certain times or –after an amount of time has passed. Timer objects are created from the Timer class. The general format of the Timer class’s constructor: Timer(int delay, ActionListener listener)

© 2010 Pearson Addison-Wesley. All rights reserved Timer Objects The delay parameter is the amount of time between action events in milliseconds. The the listener parameter is a reference to an action listener to be registered with the Timer object. –Passing null will cause no action listener to be registered. –the Timer object’s addActionListener method can register an action listener after the object’s creation.

© 2010 Pearson Addison-Wesley. All rights reserved Timer Object Methods void addActionListener (ActionListener listener) –Registers the object referenced by listener as an action listener. int getDelay() –Returns the current time delay in milliseconds. boolean isRunning() –Returns true if the Timer object is running. void setDelay(int delay) –Sets the time delay in milliseconds. void start() –Starts the Timer object. void stop() –Stops the Timer object.

© 2010 Pearson Addison-Wesley. All rights reserved Timer Object Methods An application can use a Timer object to automatically execute code at regular time intervals. Example: –BouncingBall.javaBouncingBall.java –BouncingBall.htmlBouncingBall.html

© 2010 Pearson Addison-Wesley. All rights reserved Playing Audio Java programs can play audio that is stored in a variety sound file formats. –.aif or.aiff (Macintosh Audio File) –.au (Sun Audio File) –.mid or.rmi (MIDI File) –.wav (Windows Wave File) One way to play an audio file is to use the Applet class’s play method. One version of this method is: –void play(URL baseLocation, String fileName)

© 2010 Pearson Addison-Wesley. All rights reserved Playing Audio The argument passed to baseLocation is a URL object that specifies the location of the file. The argument passed to fileName is and name of the file. The sound that is recorded in the file is played one time. The getDocumentBase or getCodeBase methods can get a URL object for the first argument.

© 2010 Pearson Addison-Wesley. All rights reserved Playing Audio The getDocumentBase method returns a URL object containing the location of the HTML file that invoked the applet. play(getDocumentBase(), "mysound.wav"); The getCodeBase method returns a URL object containing the location of the applet’s.class file. play(getCodeBase(), "mysound.wav"); If the sound file specified by the arguments to the play method cannot be found, no sound will be played.

© 2010 Pearson Addison-Wesley. All rights reserved Using an AudioClip Object The Applet class’s play method: –loads a sound file, –plays it one time, and –releases it for garbage collection. If you need to load a sound file to be played multiple times, use an AudioClip object. An AudioClip object is an object that implements the AuidoClip interface.

© 2010 Pearson Addison-Wesley. All rights reserved Using an AudioClip Object The AudioClip interface specifies the following three methods: –play – plays a sound one time. –loop – repeatedly plays a sound. –stop – causes a sound to stop playing. The Applet class’s getAudioClip method can be used to create an AudioClip object: AudioClip getAudioClip(URL baseLocation, String fileName) The method returns an AudioClip object that can be used to play the sound file. Example: AudioDemo2.java, AudioDemo2.htmlAudioDemo2.javaAudioDemo2.html

© 2010 Pearson Addison-Wesley. All rights reserved Playing Audio in an Application Playing audio in from a JFrame is slightly different than playing audio from an applet. // Create a file object for the step.wav file. File file = new File("step.wav"); // Get a URI object for the audio file. URI uri = file.toURI(); // Get a URL for the audio file. URL url = uri.toURL(); // Get an AudioClip object for the sound // file using the Applet class's static // newAudioClip method. sound = Applet.newAudioClip(url); Example: AudioFrame.java AudioFrame.java