和jsp放一起就可以了 
<applet codebase="." code=your.class width=460 height=160>
</applet>

解决方案 »

  1.   

    你就把JSP当HTML文件一样用你的Applet就行了!
      

  2.   

    <jsp:plugin 
    type="applet" 
    code="ClassFileName"
    codebase="ClassFileDirectioryName"
    [<jsp:params>
    <jsp:param name="ParameterName" 
    value="{parameterValue|<%=expression%>"/>]
    [</jsp:fallback> text message for user </jsp:fallback>]
    </jsp:plugin>
    <!--"ClassFileDirectoryName"是Java Class 文件的目录-->
      

  3.   

    效果其实跟HTML中用APPLET一样的。
      

  4.   

    jsp html放到了客户端没有什么区别
      

  5.   

    <jsp:plugin
        type="applet"
        code="ChatApplet.class"
        codebase="org\jetic\web\chat"
        width="400"
        height="300">
    </jsp:plugin>我把org.jetic.web.chat 包放到当前目录了,可还不行。就是找不到ChatApplet.class类。
      

  6.   

    两种都是可以的。
    <jsp:plugin
        type="applet"
        code="ChatApplet.class"
        codebase="org\jetic\web\chat"
        width="400"
        height="300">
    </jsp:plugin>
    或者自己当作网页的资源。
      

  7.   

    同意xmvigour(微电--有狼的气质 没狼的勇气 真郁闷)