I do not mean the title, It's the word that appear at the left bottom corner that i want to remove

解决方案 »

  1.   

    要改安全配置文件,我也不懂,不过我用了种方法跳过去了。
    /*
     * @(#)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礼貌找。
    文件名是不规则的大小写数字混合的一个,记不得了
      

  2.   

    不好意思有个地方要改一下
    showMessageDialog("hello");
    //win.eval("alert(\"你好POP\")");
    //win.eval("location=\"http://www.km169.net/\"");这里的showMessageDialog("hello");应该注释掉
    把 //win.eval("alert(\"你好POP\")");
    的注释去掉。