Web中使用Applet的方法
Applet这东西,以前没有使用过,更没有在jsp页面中使用。这次必须要在jsp中使用Applet显示图,也就来学了一学。
在网上查了一些使用方法。
JSP中嵌入applet使用<jsp:plugin/>标签
我使用的applet类是
AlarmSpeedApplet.class,在com.wlwh.chart.linechart包中。测试JSP为AppeltJsp.jsp
<jsp:plugin>标签定义如下:
<jsp:plugin type="applet"code="com.wlwh.chart.linechart.AlarmSpeedApplet.class"codebase="plugin"width="600" height="600"></jsp:plugin>
<jsp:plugin type="applet"code="com.wlwh.chart.linechart.AlarmSpeedApplet.class"codebase="plugin"archive="AlarmSpeedData.class,AlarmSpeed.class,jfreechart-1.0.8.jar,jfreechart-1.0.8-experimental.jar,jfreechart-1.0.8-swt.jar,jcommon-1.0.12.jar"width="600" height="600"></jsp:plugin>