Java
Java can be used to program "applets" that may be downloaded from a Web server to a browser to be executed locally by the browser. Java applets can be loaded through an <applet> or <object> tag.
Examples:
<object classid="java:Clock2.class"
codetype="application/java-vm"
width="160"
height="140">
</object>
<applet code="Clock2.class"
width="160"
height="140">
</applet>
Java class files must have file name extension .class. If the underlying file system does not support file name extensions with 5 characters, the Web server will replace ".class" with ".cla" to satisfy the request.
See demo program WebServer for a complete example of loading a Java applet.
Web Server
Form Action Posts
Server Push
|