gpt4 book ai didi

java - Morena 签署的 Jars 导致我的 Jars 出现问题

转载 作者:行者123 更新时间:2023-12-02 07:38:43 25 4
gpt4 key购买 nike

我使用 Morena API 来通过 Java 来使用扫描仪。然而,Morena jar 的签名使用了与我项目的其余部分不同的 key 。当我尝试运行我的小程序时,这会导致问题并给出以下运行时异常:

"Jar resources in JNLP file are not signed by the same certificate"

我在我的项目中使用 netbeans,那么如何强制 Morena 使用我的签名而不是它附带的签名?

netbeans 自动生成的 JNLP 文件:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<jnlp href="launch.jnlp" spec="1.0+">
<information>
<title>ArFile</title>
<vendor>Matthew Pigram</vendor>
<homepage href="http://www.allcarecomputerservices.com"/>
<description>ArFile is designed to allow users to effectively manage documents through a convenient cloud storage facility</description>
<description kind="short">ArFile</description>

</information>
<update check="always"/>
<security>
<all-permissions/>
</security>
<resources>
`<j2se java-vm-args="-Djava.security.policy=applet.policy" version="1.6+"/>
<jar href="ArFile.jar" main="true"/>
<jar href="lib/commons-codec-1.4.jar"/>
<jar href="lib/jdom.jar"/>
<jar href="lib/security-1.1.jar"/>
<jar href="lib/emcesu.jar"/>
<jar href="lib/commons-io-2.3-javadoc.jar"/>
<jar href="lib/commons-io-2.3-sources.jar"/>
<jar href="lib/commons-io-2.3-test-sources.jar"/>
<jar href="lib/commons-io-2.3-tests.jar"/>
<jar href="lib/commons-io-2.3.jar"/>
<jar href="lib/jodconverter-core-3.0-beta-4.jar"/>
<jar href="lib/juh-3.2.1.jar"/>
<jar href="lib/jurt-3.2.1.jar"/>
<jar href="lib/ridl-3.2.1.jar"/>
<jar href="lib/unoil-3.2.1.jar"/>
<jar href="lib/mail.jar"/>
<jar href="lib/log4j-1.2.16.jar"/>
<jar href="lib/morena.jar"/>
<jar href="lib/morena_windows.jar"/>
</resources>
<applet-desc height="604" main-class="com.allcare.arfile.ArFileJApplet" name="ArFile" width="756">
</applet-desc>
</jnlp>`

还有这个:

<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="${jnlp.codebase.value}">
<information>
<title>jnlpcomponent1</title>
<vendor>JARSIGNI</vendor>
</information>
<security>
<all-permissions/>
</security>
<resources>
<jar href="lib/morena.jar" download="eager"/>
<jar href="lib/morena_windows.jar" download="eager"/>
</resources>
<component-desc/>
</jnlp>

最佳答案

这是 Java Web Start 确保客户端下载的 jar 不会受到损害的方式。这是一项安全功能。

您可以尝试使用您的证书而不是默认证书对 Morena jar 进行签名。

使用 keytooljarsigner 您可以对 jar 进行签名。

编辑:从 Java Web Start 1.5.0 开始,您可以对 jar 进行多重签名,在另一个现有证书链上添加代码签名证书

http://docs.oracle.com/javase/1.5.0/docs/guide/javaws/developersguide/faq.html#221

因此,您可以使用您的签名对 Morena jar 进行签名,这将解决问题。

关于java - Morena 签署的 Jars 导致我的 Jars 出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11858419/

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