从今天起,我无法在 Eclipse 中访问 netscape.javascript.* 类
从今天开始,我的 Eclipse 无法加载 JSObject
。 这段代码之前工作正常。 有什么想法如何修复它吗? 我的类路径中有简单的 netscape.jar
。
这是现在无法工作的代码:
import netscape.javascript.*;
...
try {
doc = (JSObject) JSObject.getWindow(app); //.getMember("document");
} catch(JSException e) {
doc = null;
Debug.error("DBscorm().<init>: Exception " + e);
throw(e);
} catch(Exception e){
doc = null;
Debug.error("DBscorm().<init>: Exception " + e);
throw(e);
}
Since today, my Eclipse fails to load JSObject
. This code was previously working OK. Any ideas how to fix it? I do have simple netscape.jar
in the classpath.
Here is the code that now fails to work:
import netscape.javascript.*;
...
try {
doc = (JSObject) JSObject.getWindow(app); //.getMember("document");
} catch(JSException e) {
doc = null;
Debug.error("DBscorm().<init>: Exception " + e);
throw(e);
} catch(Exception e){
doc = null;
Debug.error("DBscorm().<init>: Exception " + e);
throw(e);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
每个 JDK 子文件夹中都有一个名为 plugin.jar 的文件。
获取此文件并将其添加到 Eclipse 类路径中。 这将使它工作-保证。
In every JDK subfolder is a file called plugin.jar
Get this file and add it to your Eclipse classpath. This will make it work - guaranteed.
有几种可能性:
A couple of possibilities: