DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Crear .bat Desde NetBeans
// Crea un archivo .bat para una aplicación Java construida desde NetBeans. Agregar este tag en build.xml
<target name="-post-jar">
<echo file="${dist.dir}/run.bat">java -jar ${application.title}.jar</echo>
</target>





