CMS in general, Daisy in particular:13
Embedded Java Applet
More details, including a live example
- Insert an appropriate include tag in a Daisy simple document ...
- At the document root of your web server create the following directory ...
-
mkdir -p applet/example_000/
- In the example_000/ directory, create an HTML file taking note of the Java Applet tag code and codebase ...
-
<html> <body> <applet code="Example_000" codebase="/applet/example_000" width="120" height="80"> Your browser doesn't support Java applets </applet> </body> </html>
- Place the Java Applet source code Example_000.java in the example_000/ directory.
- Compile the Java Applet ...
-
javac -source 1.2 -target 1.1 Example_000.java
- Ensure that appropriate read access is enabled ...
-
chmod 444 *.html *.java *.class



There are no comments.