当前位置: 技术问答>java相关
remove "Java Applet Window" ?
来源: 互联网 发布时间:2015-05-17
本文导语: Hi, can anyone tell me how to remove the word "Java Applet Window" from a applet/frame/dialog running on the browser? Thank you very much. yunhe | 要改安全配置文件,我也不懂,不过我用了种方法跳过去了。 /* * @(#)Tes...
Hi, can anyone tell me how to remove the word "Java Applet Window" from a applet/frame/dialog running on the browser? Thank you very much.
yunhe
yunhe
|
要改安全配置文件,我也不懂,不过我用了种方法跳过去了。
/*
* @(#)Test.java 1.0 02/04/23
*
*satan
*/
import java.awt.*;
import java.applet.*;
import javax.swing.*;
import netscape.javascript.JSObject;
import netscape.javascript.JSException;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class Test extends JApplet implements ActionListener {
private JSObject win=null;
public void init() {
try{
win=JSObject.getWindow(this);
}
catch(Exception e){
System.out.println(e);
}
this.getContentPane().setLayout(new FlowLayout());
JButton btn=new JButton("POP");
this.getContentPane().add(btn);
btn.addActionListener(this);
}
public void actionPerformed(ActionEvent parm1) {
try{
showMessageDialog("hello");
//win.eval("alert("你好POP")");
//win.eval("location="http://www.km169.net/"");
}
catch(Exception e){
System.out.println(e);
}
}
}
netscape.javascript.JSObject;
netscape.javascript.JSException;
两个类在windows目录下的jar礼貌找。
文件名是不规则的大小写数字混合的一个,记不得了
/*
* @(#)Test.java 1.0 02/04/23
*
*satan
*/
import java.awt.*;
import java.applet.*;
import javax.swing.*;
import netscape.javascript.JSObject;
import netscape.javascript.JSException;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class Test extends JApplet implements ActionListener {
private JSObject win=null;
public void init() {
try{
win=JSObject.getWindow(this);
}
catch(Exception e){
System.out.println(e);
}
this.getContentPane().setLayout(new FlowLayout());
JButton btn=new JButton("POP");
this.getContentPane().add(btn);
btn.addActionListener(this);
}
public void actionPerformed(ActionEvent parm1) {
try{
showMessageDialog("hello");
//win.eval("alert("你好POP")");
//win.eval("location="http://www.km169.net/"");
}
catch(Exception e){
System.out.println(e);
}
}
}
netscape.javascript.JSObject;
netscape.javascript.JSException;
两个类在windows目录下的jar礼貌找。
文件名是不规则的大小写数字混合的一个,记不得了
|
super("");
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。