Java Applet:调用JavaScript - JSObject.getWindow(this)返回null

时间:2011-06-19 14:55:21

标签: java javascript html applet call

我的Java小程序

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;

import javax.swing.JApplet;
import javax.swing.JButton;

import netscape.javascript.JSObject;

@SuppressWarnings("serial")
public class LocalFileSystem extends JApplet {

private JSObject js;
private final JButton button;

public LocalFileSystem() {
    setLayout(null);

    button = new JButton("getDrives()");
    button.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent arg0) {
            button.setText( getDrives() );
        }
    });
    button.setBounds(25, 72, 89, 23);
    add(button);
}

public void init() {
    js = JSObject.getWindow(this);
}

public String getDrives() {
    if (js != null) return "NULL";
    for (File f: File.listRoots())
        js.call("addDrive", new String[] { f.getAbsolutePath() });
    return "NOT NULL";
}
}

我的HTML代码:

<!-- language: lang-html --><html>
<head>
<script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
</head>
<body>
    <script type="text/javascript">
function addDrive(s)    {
    alert(s);
}
</script>
<object type="application/x-java-applet;version=1.4.1" width="180"
    height="180" name="jsap" id="applet">
    <param name="archive" value="http://localhost/LocalFileSystemApplet/bin/applet.jar?v=<?php print mt_rand().time(); ?>">
    <param name="code" value="LocalFileSystem.class">
    <param name="mayscript" value="yes">
    <param name="scriptable" value="true">
    <param name="name" value="jsapplet">
</object>
</body>
</html>

正在加载applet,当我点击按钮时,我总是得到getDrives()返回的NULL。 为什么呢?

2 个答案:

答案 0 :(得分:3)

从模糊内存中,如果从JSObject方法调用,则建立init()的调用将失败。

所以这个..

public void init() {
    js = JSObject.getWindow(this);
}

..应该是......

public void start() {
    js = JSObject.getWindow(this);
}

由于可能会多次调用start()方法(例如,从最小化恢复浏览器),因此使用支票可能需要付费:

public void start() {
    if (js==null) {
        js = JSObject.getWindow(this);
    }
}

更新

我在Read/Write HTML field values from JAVA看到了它。页面底部的“小字”表示:

  

为获得最佳效果,请勿在Applet的init()方法中使用LiveConnect JSObject。

答案 1 :(得分:1)

检查以下代码行:

if (js != null) return "NULL";

不应该是吗?:

if (js == null) return "NULL";