这是小程序的网络代码
<applet code=test.class name=test archive="thisDemo.jar">
</applet>
我写了一个类,该类访问本地数据,所以我使用key对applet进行签名。但我需要使用其他库,比如 Apache jar。
如何在applet中使用jar?
我可以在eclipse中使用Apache jar,但是当web调用applet时不能在applet中工作。
这是小程序的网络代码
<applet code=test.class name=test archive="thisDemo.jar">
</applet>
我写了一个类,该类访问本地数据,所以我使用key对applet进行签名。但我需要使用其他库,比如 Apache jar。
如何在applet中使用jar?
我可以在eclipse中使用Apache jar,但是当web调用applet时不能在applet中工作。
这对我有用:
<applet code=test.class name=test archive="thisDemo.jar,apache.jar" width="800" height="600">
</applet>
并放在apache.jar
旁边thisDemo.jar
您可能需要对每个依赖项 jar 进行签名:
https://stackoverflow.com/questions/14229863/must-sign-all-jars-of-applet