3

很长一段时间我在运行应用程序 jar 时遇到了一个问题 -

我正在使用混淆 JAR Proguard,该 JAR 文件还包含一些资源文件,如图像、.version 文件等以及publicCerts.store文件。

因此,要将资源文件包含到最终的 JAR 中,我已将所有资源文件指定为

-adaptresourcefilecontents **.fxml,**.properties,META-INF/MANIFEST.MF,images/*.jar,*.version,publicCerts.store 

但是在运行我的应用程序 JAR 时,我得到了执行 -

 Exception in Application start method
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.javafx.main.Main.a(Main.java:642)
    at com.javafx.main.Main.main(Main.java:805)
    Caused by: java.lang.RuntimeException: Exception in Application start method
    at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherIm
    pl.java:403)
    at com.sun.javafx.application.LauncherImpl.access$000(LauncherImpl.java:
    47)
    at com.sun.javafx.application.LauncherImpl$1.run(LauncherImpl.java:115)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.AssertionError: java.security.KeyStoreException: Uninitiali
    zed keystore
    at de.schlichtherle.license.LicenseNotary.getPublicKey(Unknown Source)
    at de.schlichtherle.license.LicenseNotary.verify(Unknown Source)
    at de.schlichtherle.license.LicenseManager.verify(Unknown Source)
    at de.schlichtherle.license.LicenseManager.verify(Unknown Source)

    at com.sun.javafx.application.LauncherImpl$5.run(LauncherImpl.java:319)
    at com.sun.javafx.application.PlatformImpl$5.run(PlatformImpl.java:206)
    at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:173)
    at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
    at com.sun.glass.ui.win.WinApplication.access$100(WinApplication.java:29
    )
    at com.sun.glass.ui.win.WinApplication$3$1.run(WinApplication.java:73)
    ... 1 more
    Caused by: java.security.KeyStoreException: Uninitialized keystore
    at java.security.KeyStore.isKeyEntry(Unknown Source)
    ... 17 more

我认为混淆会破坏 publicCerts.store 所以对 publicCerts.store 使用另一个混淆选项

-adaptresourcefilenames publicCerts.store
-adaptresourcefilecontents **.fxml,**.properties,META-INF/MANIFEST.MF,images/*.jar,.version

它有效。当我以前通过应用程序 jar 双击时,它显示了我的应用程序窗口,但现在本机捆绑可执行文件 (exe) 在相同情况下在相同条件下向我显示此对话框。

在此处输入图像描述

已编辑 -

I have debugged the issue and found that it's throwing exception - 
    java.lang.AssertionError: java.security.NoSuchAlgorithmException: PBEWithMD5AndDES SecretKeyFactory not available java.security.NoSuchAlgorithmException: PBEWithMD5AndDES SecretKeyFactory not available

我想知道本机捆绑可执行文件 (exe) 是由同一个可执行文件组成的,但 exe 无法正常工作。这是部署应用程序和创建本机捆绑 exe 的 ANT 步骤。

<target name="CreatingExe" depends="SignedJar">
            <fx:deploy width="800" height="600" nativeBundles="all" outdir="${dist}" outfile="${app.name}">
                <fx:info title="${app.title}"/>
                    <fx:application name="${app.title}" mainClass="${main.class}"/>
                    <fx:resources>
                        <fx:fileset dir="${distBI}" includes="*.jar"/>
                <fx:fileset dir="${WorkingFolder}/temp"/>
            </fx:resources>
         </fx:deploy>
    </target> 

仅供参考:我在 Windows 8 操作系统、64 位机器上运行我的构建。我正在按照以下步骤部署我的 JavaFX 应用程序-

Compiling JavaFX Code.
Creating JAR.
Obfuscating code.
Signing Jar
Creating Executable. 
Signing Executable. 

Build was successful.

如何从混淆中排除 publicCerts.store?为什么即使应用程序 jar 工作,最终的 exe 也不能工作?我是否需要在 fx:deploy 任务中指定任何其他内容?

4

1 回答 1

0

在构建 JavaFx 本机捆绑包时,不包含该ext文件夹。<JDK.HOME>该文件夹包含的主要是安全内容。

<!--Copy the ext library to the runtime lib-->
<copydir src="${java.home}/lib/ext"
    dest="${dist.jar.dir}/bundles/{YOUR.PACKAGE.NAME}/runtime/jre/lib/ext"
    includes="**/*"
/>
于 2013-07-08T01:59:17.507 回答