有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java JAR清单代码库不匹配

我在dropbox中有一个小程序,在droppages中有一个链接。小程序是自签名的。遵循代码

Manifest-Version: 1.0
Ant-Version: Apache Ant 1.9.1
X-COMMENT: Main-Class will be added automatically by build
Class-Path: lib/GammingImage.jar lib/SolomonKingdomResources.jar
Permissions: all-permissions
Created-By: 1.7.0_45-b18 (Oracle Corporation)
Codebase: ...(etc)

jnlp

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<jnlp codebase="" href="launch.jnlp" spec="1.0+">
  <information>
    <title>SolomonKingdom</title>
    <vendor>Usuario</vendor>
    <homepage href=""/>
    <description>SolomonKingdom</description>
    <description kind="short">SolomonKingdom</description>
 <offline-allowed/>
</information>
 <update check="background"/>
 <security>
  <all-permissions/>
 </security>
<resources>
    <j2se java-vm-args="-Djava.security.policy=applet.policy" version="1.7+"/>
    <jar href="SolomonKingdom.jar" main="true"/>
<jar href="lib/GammingImage.jar"/>
<jar href="lib/SolomonKingdomResources.jar"/>
</resources>
<applet-desc height="768" main-class="solomonkingdom.loginScreen" name="SolomonKingdom" width="1024">
</applet-desc>
</jnlp>

我也已经在Java面板中添加了异常

http://mygame.droppages.com/
https://dl.dropboxusercontent.com/u/78281142/launch.jnlp

还有更多

java.lang.SecurityException: JAR manifest codebase mismatch for dl.dropboxusercontent.com/u/78281142/SolomonKingdom.jar
    at com.sun.deploy.security.DeployManifestChecker.verify(Unknown Source)
    at com.sun.deploy.security.DeployManifestChecker.verify(Unknown Source)
    at com.sun.javaws.security.AppPolicy.grantUnrestrictedAccess(Unknown Source)
    at com.sun.javaws.security.JNLPSignedResourcesHelper.checkSignedResourcesHelper(Unknown Source)
    at com.sun.javaws.security.JNLPSignedResourcesHelper.checkSignedResources(Unknown Source)
    at sun.plugin2.applet.JNLP2Manager.prepareLaunchFile(Unknown Source)
    at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)

有人可以说我需要做什么来发现我做错了什么。谢谢!


共 (1) 个答案

  1. # 1 楼答案

    对于该错误消息,最重要的部分是Codebase属性。 第一次试举 Codebase: * 在你的清单文件中。 有关更多详细信息,请参见codebase-attribute-in-manifest-mismatch