我使用netbeans7.4创建了一个java桌面应用程序。我使用ireport 5.6.0进行报告。我通过字体扩展创建了自定义字体。 当我在IDE内部/外部(来自dist文件夹)运行应用程序时,所有这些都非常有用。
现在,当我将所有内容编译到一个jar(Run Target> Other Targets> Package-for-store)时,我遇到以下错误来运行该文件。 (我需要编译到一个jar,因为我想创建一个安装程序)
<target name="package-for-store" depends="jar">
<property name="store.jar.name" value="myProject"/>
<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}"/>
</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>
除了Ireport部分之外,每件事情都很好(数据库,应用程序)。任何人都可以帮我解决这个问题。提前感谢所有人为我提供支持。
有人能告诉我以下代码是否完美?我用这段代码生成了一个jar文件。
YYYYMMDD