JumpLoader
Java File Upload Applet

Demo

Download demo

Download url:
Local file:
(leave empty to download to temp file)
Title:
(leave empty to use file name)
 
Code:
                  <p>
                    <applet id="jumpLoaderApplet" name="jumpLoaderApplet"
	code="jmaster.jumploader.app.JumpLoaderApplet.class"
	archive="jumploader.jar"
	width="715"
	height="450"
	mayscript>

		<param name="uc_uploadUrl" value="partitionedUploadHandler.php"/>
</applet>
                  </p>
<script language="javascript">
	function getApplet() {
		return document.jumpLoaderApplet;
	}
	function download() {
		var url = document.debugForm.url.value;
		var localPath = document.debugForm.localPath.value;
		var title = document.debugForm.title.value;
		getApplet().getUploader().addDownload(url, localPath, title);
	}
</script>
<form name="debugForm">
  <table border="1" cellpadding="2">
    <tr>
        <td>Download url:</td>
        <td><input type="text" name="url" id="url" size="80"></td>
      </tr>
      <tr>
        <td>Local file:<br>
          <span class="smallerLabel">(leave empty to download to temp file)</span></td>
        <td>
          <input type="text" name="localPath" id="localPath" size="80"></td>
      </tr>
      <tr>
        <td>Title:<br>
          <span class="smallerLabel">(leave empty to use file name)</span></td>
        <td><input type="text" name="title" id="title" size="80"></td>
      </tr>
      <tr>
        <td> </td>
        <td><div align="right">
			<input type="button" onclick="javascript:download()" value="add download">
        </div></td>
      </tr>
  </table>
    <div id="getProperty"></div>
</form>