gpt4 book ai didi

java - PrivilegedActionException 试图从 JavaScript 调用签名的 Java applet

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:21:09 24 4
gpt4 key购买 nike

首先,我不是 Java 开发人员。我必须创建一个 Java 小程序来调用我从浏览器编写的 native DLL 中的一些代码。

我使用 JNA 加载 native DLL 并调用其方法。
我已经使用自签名证书对小程序进行了签名。
浏览器询问我是否允许执行该小程序。
加载我的 DLL 的小程序代码包含在 AccessController.doPrivileged block 中。

像这样:

public String Test()
{
pHelper = AccessController.doPrivileged(new PrivilegedAction<IHelper>()
{
@Override
public IHelper run()
{
return (IHelper)Native.loadLibrary("Helper", IHelper.class);
}
});

return "test";
}

代码在 Eclipse 中调试时工作正常。

从 JavaScript 调用时它不起作用。导致 PrivilegedActionException。

如果我删除整个 AccessController.doPrivileged block 并仅保留 return "test",则代码会在从 JavaScript 调用时运行。从 JavaScript 调用时,任何不需要特权的代码都可以正常运行。

在 Windows 8.1 64 位上从 Chrome 版本 40.something 和 Firefox 36 测试。 native DLL 和用于运行小程序的 JRE 都是 32 位的。

有什么建议吗?

最佳答案

我从来没有解开这个特别的谜团。但是,由于我的 applet 设计规范不需要公开任何需要调用以执行特权操作的 applet 方法,我能够找到解决方法。

我发现在 applet init() 函数中执行特权操作会起作用。只有通过从 JavaScript 调用执行的特权操作似乎会导致问题。考虑以下代码。

public class MyApplet extends JApplet {
private IHelper pHelper = null;
private MyReturnedInfo pInfo = null;

public void init() {
pHelper = (IHelper)Native.loadLibrary("Helper", IHelper.class);
if (pHelper != null) {
pInfo = pHelper.GetInfo();
}
}

public String GetInfoString() {
if (pInfo != null) {
// need to call toString to convert from native wide char to something JavaScript will be able to interpret
return pInfo.MyInfoString.toString();
}
return null;
}
}

加载此小程序后,从 JavaScript 调用 document.myApplet.GetInfoString()(假设小程序具有 ID“myApplet”)将返回所需信息。

有趣的是,在使用 VeriSign 等受信任机构颁发的证书对 applet 进行签名后,即使这样在 IE 中也无法运行,但在 FF 和 Chrome 中可以正常运行。我已经看到签名的 Java 小程序在 IE 中从 JavaScript 调用时工作正常,但我想我的小程序很特别,因为它需要 list 中的 all-permissions 属性,而 IE 可能不喜欢那样。这是一个猜测。但是,我也从未找到真正的原因,因为我能够求助于另一种解决方法。 :) 如果您正在阅读此答案,那么我敢打赌您也会对此感兴趣。

Java 小程序允许我们提供额外的参数,我们可以通过从 init() 函数内部调用 this.getParameter() 来获取这些参数。此外,如果我们允许 applet 通过使用 mayscript 属性从我们的 HTML 文档调用 JavaScript 函数,我们可以轻松地将这两个事实结合起来,为 applet 提供 JavaScript 函数,以便在我们的 native DLL 中调用信息已获得。

假设在我们的 HTML 中,我们这样定义 JavaScript。

<script type="text/javascript" src="https://www.java.com/js/deployJava.js"></script>
<script type="text/javascript">
var attributes = {
id: "myApplet",
name: "myApplet",
code: "MyApplet.class",
mayscript: "true",
scriptable: "true",
archive: "/path(s)/to/jar(s)",
width: 0,
height: 0
};

var params = {
"AppletReady": "appletInitialized",
};

// For convenience, it's easier to deploy the applet using deployJava,
// so it writes the applet HTML tag for us after checking if Java is installed.
// We have included it above.
deployJava.runApplet(attributes, params, "1.8.0");

function appletInitialized(myString, someOtherArgument) {
// do something with your parameters
// NOTE: do NOT call alert() from this function!
// Because it will most likely cause your browser to freeze,
// I've found that's also one of the things Java doesn't like.
};
</script>

然后,我们将 Java applet 代码修改为如下所示。

public class MyApplet extends JApplet {
private IHelper pHelper = null;
private MyReturnedInfo pInfo = null;

public void init() {
// Read the AppletReady parameter as passed from JavaScript
String paramKey = "AppletReady";
String jsLoadedCallback = this.getParameter(paramKey);

// Load the library and get the information
pHelper = (IHelper)Native.loadLibrary("Helper", IHelper.class);
if (pHelper != null) {
pInfo = pHelper.GetInfo();
if (pInfo != null && jsLoadedCallback != null) {
// Get the window which contains "this" applet
JSObject jsObject = JSObject.getWindow(this);

// Call the provided JavaScript function.
// You can use as many parameters as you need.
jsObject.call(jsLoadedCallback, new Object[] {
pInfo.MyInfoString.toString(),
pInfo.SomeOtherStringMaybe.toString()
});
}
}
}
}

但是,如果您需要小程序在运行时动态调用您的 native DLL 方法(即您需要小程序公开需要被调用以动态执行特权操作的函数),此解决方案将不适合您,您就出局了运气好,至少在使用 JNA 时是这样。

关于java - PrivilegedActionException 试图从 JavaScript 调用签名的 Java applet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28941172/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com