当尝试使用openwebstart调用jnlp应用程序时,我得到了这个错误堆栈跟踪。
net.adoptionjdk.icedteaweb.shaded.mozilla.javascript.ecmaerror:引用错误:未定义“java”(net.adoptopenjdk.icedteaweb.shaded.mozilla.javascript.scriptruntime.constructerror(scriptruntime)中的内部#105)。java:3557)在net.adoptopenjdk.icedteaweb.shaded.mozilla.javascript.scriptruntime.constructerror(scriptruntime。java:3535)在net.adoptopenjdk.icedteaweb.shaded.mozilla.javascript.scriptruntime.notfounderror(scriptruntime。java:3620)在net.openjdk.icedteaweb.shaded.mozilla.javascript.scriptruntime.name(脚本运行时)。java:1652)在net.adoptopenjdk.icedteaweb.shaded.mozilla.javascript.interpreter.interpretalLoop(解释器。java:3413)在script.dnsresolve(internal:105)在script.getresolvedip(http://uhic.ca.edu/toodeepregression3.pac:569)在script.findproxyforurl(http://uhic.ca.edu/toodeepregression3.pac:62)
第569行的脚本是。。internalresolvedip=dnsresolve(主机)
if (
host
) {
// If the user has typed an IP address in the address bar, take it
// as it is.
var isIpV4Address = /^(\d+.){3}\d+$/;
var isIpV6Address = /^\[(.*)\]$/;
if (
isIpV4Address.test(host)
) {
internalResolvedIp = host;
} else {
var matches = host.match(isIpV6Address);
if (
matches && matches.length === 2
) {
// Get the address between the square brackets
internalResolvedIp = matches[1];
} else if (
isDnsResolvingAllowed
) {
****internalResolvedIp = dnsResolve(host);****
}
}
}
我不确定这个错误是什么。我也查看了openwebstart日志。我在itnernet世界里到处搜索,但是我几乎没有找到任何关于这个错误的信息。
暂无答案!
目前还没有任何答案,快来回答吧!