我有以下简单的嵌入小程序 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 与上面相同,但未显示小程序,JVM 报告:“ WelcomeApplet.class not found
”
看起来不是安全问题,而是实现的东西(我猜)。
任何想法?
谢谢