我有以下简单的嵌入applet html页面:
<html>
<applet code="WelcomeApplet.class" archive="WelcomeApplet.jar" width=300 height=30>
</applet>
</html>
如果我要求此页面(即地址为“http://192.168.0.2/WelcomeApplet.html
”),
小程序在浏览器中正确显示。
我应该仅通过servlet调用此页面,因为不应显示url页面,因此在doGet
servlet方法中插入以下代码:
URL url = new URL("http://192.168.0.2/WelcomeApplet.html");
URLConnection conn = url.openConnection();
conn.setRequestProperty("Content-Language", "en-US");
conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
conn.setDoInput(true);
conn.setUseCaches(false);
conn.setAllowUserInteraction(true);
BufferedInputStream buffer = new BufferedInputStream(conn.getInputStream());
StringBuilder builder = new StringBuilder();
int byteRead;
while ((byteRead = buffer.read()) != -1)
builder.append((char) byteRead);
buffer.close();
out.write(builder.toString());
一切正常,解析的html与上面相同,但是applet没有显示,JVM报告:“WelcomeApplet.class not found
”
看起来不是安全问题,而是实现的东西(我猜)。
有什么想法吗?
由于
答案 0 :(得分:0)
code
属性应该命名Java类,而不是文件。 (JAR文件由archive
属性命名。)因此,code
属性的值应该只是WelcomeApplet
,假设它在默认命名空间中。