|
Java Applets, developed with the Java programming
language, are mini-programs with which you can animate objects,
scroll text, or add interactive components to your Web pages.
Java Applets organize and categorizes the topics on the Web.
Applet files are big and take up to a couple minutes to download.
Recent versions of Netscape Navigator and Internet Explorer
can use applets without additional software.
Example
import java.applet.*;
public class appl extends Applet
/*<Applet code ="appl.class"
height=200 width=300></applet>*/
{
public void init() { }
public void paint(Graphics g)
{
g.drawString("Hello
... ",50,50);
}
}

Copyrights : Layout Galaxy All Rights Reserved
No part of this tutorial may be reproduced, stored in a retrieval system or transmitted in any form or by any means, electronic, electrostatic, magnetic tape, mechanical or otherwise, without prior permission in writing from Layout Galaxy.
|
|
|