We also look at html, since we need it to use applets.

Slides:



Advertisements
Similar presentations
HTML. The World Wide Web Protocols Addresses HTML.
Advertisements

A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
Lecture 15.1 Static Methods and Variables. © 2006 Pearson Addison-Wesley. All rights reserved Static Methods In Java it is possible to declare.
Java Applets A lab course by Dr. Junaid Ahmed Zubairi SUNY Fredonia.
1 CS100J 12 April 2007 Applications and Applets Read Chapter 16 of the text I never let my schooling interfere with my education. Mark Twain Learning makes.
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.
Chapter 14 Applets. 2 Knowledge Goals Understand the differing roles of applications and applets Understand how a browser operates Understand the role.
23-Jun-15 HTML. 2 Web pages are HTML HTML stands for HyperText Markup Language Web pages are plain text files, written in HTML Browsers display web pages.
CS100Lecture 181 Announcements P4 due tomorrow P5 handed out today References? Leave me a picture and a short note.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
Program Design With Methods And Graphics / Chapter 4 1 Abstract Window Toolkit.
Applets, HTML and GUI’s Recitation – 04/11/2008 CS 180 Department of Computer Science, Purdue University.
Introduction to Java Programming CS 21a: Introduction to Computing I First Semester,
©The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 4 th Ed Chapter Java Applets What is an Applet? How do you create.
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.
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Extended Learning Module F Building a Web Page with HTML.
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
Chapter 8 Introduction to HTML and Applets Fundamentals of Java.
1 CS100J 2 December 2008 Applications and Applets Read Chapter 16 of the text We also look at html, since we need it to use applets. Top finalists from.
Lec.10 + (Chapter 8 & 9) GUI Java Applet Jiang (Jen) ZHENG July 6 th, 2005.
1 Recitation 09. Applications and Applets Java applications Those who took CS100J and CS100M in fall 2003 may not have had much experience with Java applications.
1 CS Nov 2011 Applications and Applets Read Chapter 16 of the text We also look at html, since we need it to use applets. Top finalists from a real-life.
McLean HIGHER COMPUTER NETWORKING Lesson 5 HTML Description of HTML web page Creating a simple HTML web page.
Chapter 6 Applets and HTML  Overview  HTML tags for Applets  Applet Life Cycle  Applet Class  JAR files.
Lecture 15.1 Static Methods and Variables Static Methods In Java it is possible to declare methods and variables to belong to a class rather than.
12-2 Chapter Topics Chapter 14 discusses the following main topics: Introduction to Applets A Brief Introduction to HTML Creating Applets with Swing Using.
CS 111 – Oct. 4 Web design –HTML –Javascript Commitment: –This week, read sections 4.3 – 4.5.
Intro to Applets. Applet Applets run within the Web browser environment Applets bring dynamic interaction and live animation to an otherwise static HTML.
Chapter 4 Applets Cop Why Applets? WWW makes huge information available to anyone with web browser. Web server send web pages and images to your.
Introduction to Computers 12/6/ BEGINNING HTML DESIGNING YOUR OWN WWW PAGES.
25/2/00SEM107 - © Kamin & ReddyClass 9 - HTML - 1 Class 9 - HTML r Creating a personal web page r Structure of HTML documents r HTML tags r The APPLET.
1 CS November Testing/Debugging. And Applications Read chapter 14, pp. 385–401 Prelim 2 Max 100 Median 82 Mean 78.3 Min * ***************************
1 Applications & Applets Standalone applications & Java applets Peter Mozelius DSV/UCSC.
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.
Applets, Images, and Audio Chapter 14 CSCI CSCI 1302 – Applets, Images, and Audio2 Outline Introduction The Applet Class –The init Method –The start.
Web programming Part 1: HTML 由 NordriDesign 提供
CSC 243 – Java Programming, Spring, 2014 April 22, 2014 Week 13, JApplets.
Basic HTML Programming Technology Education Ellsworth Community Middle School Communication Systems.
1 CS100J 08 November 2005: Applications and Applets Java application; How to produce a stand-alone application, to be run without using DrJava or any such.
HTML: Hypertext Markup Language The language to make web pages 0.
HTML – The Basics Rebecca Shillingburg
HTML-I Basic HTML Elements. HTML (Hyper Text Markup Language) HTML is a document layout and hyperlink- specification language. i.e. a language used to.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
Introduction to HTML.
Web Basics: HTML/CSS/JavaScript What are they?
HTML basics
We also look at html, since we need it to use applets.
Java Applet Programming Barry Sosinsky Valda Hilley
Lecture 16: Applets & HTML
We also look at html, since we need it to use applets.
30 Java Applets.
HTML HYPERTEXT MARKUP LANGUAGE.
Basic HTML and Embed Codes
Applets.
Introduction to Computing Using Java
Java Applets.
CS November 2010 Ragged arrays, Applets
HTML 12/27/2018.
Pertemuan 1b
Chapter 16 The World Wide Web.
HTML Basic Structure.
Applet in Java.
Pertemuan 1 Desain web Pertemuan 1
Johan Ng and Muhammad Hazzry
Outline Character Strings Variables and Assignment
Hypertext Markup Language
JAVA APPLET PREPARED BY Mr. Jahanzaib Ahmed
CS100J 03 May 2005 Applications and Applets (Chapter 16 of the text)
Presentation transcript:

We also look at html, since we need it to use applets. CS100J 14 November 2006 Applications and Applets (Chapter 16 of the text) We also look at html, since we need it to use applets. I never let my schooling interfere with my education. Mark Twain Learning makes a man fit company for himself. Anon The primary purpose of a liberal education is to make one's mind a pleasant place in which to spend one's time. Sydney J. Harris (1917-1986) American journalist.

To start the application, method main is called. Executing Java programs outside the DrJava Interactions pane. Every Java program is either an application or an applet. public class C { … public static void main(String[] args) { } Every Java application needs a class with a method main that is defined like this. To start the application, method main is called. The parameter, an array of Strings, can be used to pass information into the program.

(can type “java CLAS” in DrJava Interactions pane) public class CLAS { … public static void main(String[] args) { } > cd > dir (list of files) > java CLAS Causes call CLAS.main(null); to be executed Terminal window (can type “java CLAS” in DrJava Interactions pane)

jar file (Java Archive file) (like tar file (Tape Archive file)) Contains (among other things) .class files a “manifest”, which says which class has method main Manifest: A list of passengers or an invoice of cargo for a vehicle (as a ship or plane).

Standalone Java programs Suppose images.jar contains a Java application It has a class with a static procedure main, and its manifest names the class. • Execute it by double clicking its icon in a directory. • Execute it by typing java -jar images.jar in a terminal window (or DOS, or command-line window)

expands to name all the .class files Creating a jar file Navigate to the directory that contains the .class files. Create a text file x.mf that contains one line (with a line-feed): Main-class: <name of class> In the directory, type: jar -cmf x.mf app.jar *.class Create Manifest File name of file to create name of manifest file expands to name all the .class files

Inspecting jar files name of jar file jar -tf images.jar List the contents of jar file images.jar type (list) File name of jar file

Four inherited procedures: called to initialize Applet: a java program that can be called from a web page (in your browser) public class C { public static void main(String[] args) { … } } application Four inherited procedures: called to initialize called to start processing called to stop processing called to destroy resources (just before killing the applet) import javax.swing.*; public class A extends JApplet{ public void init() { … } public void start() { …} public void stop() { … } public void destroy() { … } } applet

An html (HyperText Markup Language) file <head> <title>Just a title</title> </head> <body> <p align="center"><B>Demo Links and Images</i> </p> <p>This is <a href="http://www.cs.cornell.edu/courses/cs100j/2006sp/"> a link</a></p> <p>This <a href="http://www.cs.cornell.edu/courses/cs100j/2006sp/" target="_blank">link</a> opens a new window</p> <p>Below is an image </p> <p><img src="Hilbert_curve.png” width="544” height="352"> </p> </body> </html> <html> start an html page <head> start the “heading” <title> the title for the page <body> start the body, content, of the page <p> begin a paragraph <a> begin a link <img> begin an image tags

An html (HyperText Markup Language) file tags <html> start an html page <head> start the “heading” <title> the title for the page <body> start the body, content, of the page <p> begin a paragraph <b> begin boldface <i> begin italics <applet> start a Java applet <br> line break (no end tag) <html> <head> <title>FacultyApplet</title> </head> <body> <p align="center"><B>This</B> is an <i>Applet!</i> </p> <br><br> <p><applet archive="AppletClasses.jar” code="FacultyApplet.class” width=800 height=550> </applet> </body> </html>