0

我有以下简单的嵌入小程序 html 页面:

<html>
    <applet code="WelcomeApplet.class" archive="WelcomeApplet.jar" width=300 height=30>
    </applet>
</html>

如果我调用这个页面(即地址是“ http://192.168.0.2/WelcomeApplet.html”),小程序会正确显示在浏览器中。

我应该只通过 servlet 调用此页面,因为不应显示 url 页面,因此在doGetservlet 方法中插入以下代码:

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

看起来不是安全问题,而是实现的东西(我猜)。

任何想法?

谢谢

4

1 回答 1

0

code属性应命名为 Java 类,而不是文件。(JAR 文件由archive属性命名。)因此,code属性的值应该是 just WelcomeApplet,假设它位于默认命名空间中。

于 2011-07-04T07:49:24.243 回答