无法从jsp调用applet

时间:2012-07-07 12:06:38

标签: java jsp netbeans applet

jsp中的

applet标记:

<%--<applet code ="applets/applet_1" height="500" width="500"/>--%>

<jsp:plugin type="applet" code="applet_1.class" codebase="web/WEB-INF/classes/applets"/>

<%--This tag is inside the jsp page which is index.jsp--%>

enter image description here

为什么我看不到小程序?我使用Netbeans作为IDE。

我甚至试过了!

enter image description here

并将标记更改为:

<jsp:plugin type="applet" code="applet_1.class" codebase="applets" height="300" width="300"/>

但没有改变。

1 个答案:

答案 0 :(得分:-1)

试试这个

<applet
    name="applet1"
    code="applet_1.class"
    codebase="/web/WEB-INF/classes/applets"
    width="300"
    height="300"

</applet>