1, Did you put the class file the same directory as the HTML file, and ".;" is in your classpath?2, which version of IE are you using? For ie6 and above, you need plug in3, Install JRE and try

解决方案 »

  1.   

    oh boy, 
    You use some classes that is not in the Jdk, "com/borland/dx/dataset/DataSet"So, find that class file. together put your applet class file into a jar file""jar -cf applets.jar com myapplet.class", ........................................
    make sure you maintain the same folder structure as com/borland/dx....
    .......................................
    now in your Html code. codebase = "."
    code     = "myapplet.class"
    archive = "applets.jar", hope that will solve your problem
      

  2.   

    系统:win2000, 环境: jbuilder5 , IE5
      

  3.   

    IE中无需特殊配置。如果在appletviewer中正常,但不能在IE中显示,那就是你的applet标签有问题,用htmlconverter转化一下你的html文件就可以了。
      

  4.   

    htmlconverter是什么东西?在那里能找到?
      

  5.   

    htmlconverter在JDK安装目录下的bin子目录中:htmlconverter.exe
      

  6.   

    你可能程序文件打包后,Applet的设置有误:
    <applet code="包名.类文件名"
            archive="jar文件"
            width="400"
            height="300"
            name=""
            id=""
            mayscript
            VIEWASTEXT>
    </applet>
    可以的错误有:
    1\code属性是包名+类文件名,如:test.TampState
    2\archive属性应该是以.jar结尾的文件,也就是你的应用程序压缩成为jar
    3\注意你的Applet与你的程序文件如Bean或者Servlet或者JSP有交互,一这别忘了加上mayscript 与viewastext;
    4\问题多半出在你的Applet程序与其他交互时出现错误.
      

  7.   

    经过几天的折磨,终于了解到我的这个目的--Applet怎么能在IE中显示调用的Access数据库(本地数据库),基本上不可能实现,除非MS在IE里面假如对BORLAND包的支持(鬼才信:)  )需要将Applet改为Servlet或者Jsp
    呵呵
    散分啦
      

  8.   

    呵呵,我也遇到过同样的问题,老师又不给用jsp,最后我只好加了个服务器程序
    痛苦啊