我有一个java应用程序填充jasper报告并生成PDF文件,当我在netbeans中运行我的应用程序时一切正常。 但是,如果我将我的应用程序打包到一个独特的Jar文件(包括所有库)并使用它来创建一个exe文件(使用launch4j),由另一个程序运行,结果是一个PDF文件,其中重音字母不会出现
我尝试从cmd“java -jar application.jar”运行应用程序,但结果是一样的,所以我认为错误在包装中。
这是我添加到build.xml文件中以创建Jar的代码:
<target name="package-for-store" depends="jar">
<!-- Change the value of this property to be the name of your JAR,
minus the .jar extension. It should not have spaces.
<property name="store.jar.name" value="MyJarName"/>
-->
<property name="store.jar.name" value="PdfEngine"/>
<!-- don't edit below this line -->
<property name="store.dir" value="store"/>
<property name="store.jar" value="${store.dir}/${store.jar.name}.jar"/>
<echo message="Packaging ${application.title} into a single JAR at ${store.jar}"/>
<delete dir="${store.dir}"/>
<mkdir dir="${store.dir}"/>
<jar destfile="${store.dir}/temp_final.jar" filesetmanifest="skip">
<zipgroupfileset dir="dist" includes="*.jar"/>
<zipgroupfileset dir="dist/lib" includes="*.jar"/>
<manifest>
<attribute name="Main-Class" value="${main.class}"/>
<attribute name="Class-Path" value="${mf.classpath}"/>
</manifest>
</jar>
<zip destfile="${store.jar}">
<zipfileset src="${store.dir}/temp_final.jar"
excludes="META-INF/*.SF, META-INF/*.DSA, META-INF/*.RSA"/>
</zip>
<delete file="${store.dir}/temp_final.jar"/>
</target>
谢谢!