downloader.html

Lab Notes
Creating trusted applets—soup to nuts
by Matt Brenner
Listing 1. downloader.html.


<html>
<body>

<center><h1>
    URL Downloader Test-Bed
</h1></center>

<p>
    If you provide a URL
    (e.g. <i>http://www.unclechicken.com/index.html</i>)
    and a destination on your local hard disk (e.g. <i>\junk</i>)
    this applet will download the URL to your computer.
</p>

<center>
<applet  code="Download.class" archive="download.jar"  width=400  height=150>
<param  name="cabbase"  value="download.cab">
</applet>
</center>


</body>
</html>