我的小程序在我打开我的 Web 应用程序时运行并且工作正常。在这个 Web 应用程序中,我有一个按钮,如果我的用户单击此按钮,小程序将在弹出窗口中打开,并加载相同的 .dll 文件。
A 得到 .dll 文件被加载到另一个类加载器中的错误,并用谷歌搜索它,我看到我无法再次加载 .dll。所以我把<archive>
标签剪成<applet>
这样
<applet code="com.griaule.fingerprintsdk.appletsample.FormMain" height="550" width="550">
<param name="Cliente" value="<%= Cliente_Id %>" />
但是我得到了一个新的错误,
ClassFormatError: Incompatible magic value 218774561 in class files FormMain
在此错误的详细信息中,出现以下堆栈
plugin2manager.parentwindowDispose
Exception in thread "thread applet-com.griaule.fingerprintsdk.appletsample.FormMain-1" java.lang.NullPointerException
at java.awt.EventQueue.isDispatchThread(Unknown Source)
at com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter.runOnEDT(Unknown Source)
at com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter.doClearAppletArea(Unknown Source)
at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
plugin2manager.parentwindowDispose
更新
我的web 应用程序上的按钮事件,打开一个调用页面OnClick
的弹出窗口。Applet.aspx
Applet.ASPX 代码
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Applet.aspx.cs" Inherits="Ui.San.Chaves.Applet" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="../Java/jquery-1.6.2.min.js" type="text/javascript"></script>
<script src="../Java/jquery.base64.min.js" type="text/javascript"></script>
<script src="../Java/preloadCssImages.js" type="text/javascript"></script>
<script src="../Java/jquery-1.4.4.min.js" type="text/javascript"></script>
</head>
<body>
<applet code="com.griaule.fingerprintsdk.appletsample.FormMain"
archive="http://www.netimoveis.com/SignedFingerprintSDKJava.jar, http://www.netimoveis.com/SignedFingerprintSDKJavaAppletSample.jar, http://www.netimoveis.com/sqljdbc4.jar"
height="550" width="550">
<param name="Cliente" value="<%= Cliente_Id %>" />
</applet>
</body>
</html>
有人可以帮助我吗?我需要在加载我的 Web 应用程序时调用小程序,并且当我的用户在同一个 Web 应用程序中单击我的按钮时。
也许是一种卸载应用程序的小程序 .dll 并在另一个弹出窗口中加载的方法。