Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Awt,Jframe 的新手。我必须将 Frame 窗口(包含显示白板的代码)集成到 jsp 页面中。你能在这方面帮忙集成一个小程序 iam 使用吗
<applet code="com.pvn.WhiteBoardMain.class" codebase="." archive="Applets.jar" width="600" height="480"/>
那么我怎样才能在jsp页面中显示这个框架窗口本身
由于小程序是一个容器,只需添加框架即可。它应该工作。
如果您的小程序是myApplet并且您的框架是myFrame,则以下代码应该可以工作(我假设myFrame已首先设置为可见):
myApplet.add( myFrame ); myApplet.validate(); // to force a redraw.