放在服务器上。客户访问的话会自动下载到客户端。具体哪个目录看你的html指定

解决方案 »

  1.   

    例如html中:
    <applet
      codebase = "."
      code     = "theapplet.theApplet.class"
      name     = "TestApplet"
      width    = "400"
      height   = "300"
      hspace   = "0"
      vspace   = "0"
      align    = "middle"
    >
    </applet>指定了一个跟html同级目录下theapplet目录中的theApplet.class的applet
      

  2.   

    codebase和code指定目录和文件名,相对路径(href)