Monthly Archives: Juni 2010

Textbearbeitung mit Ant

Mit folgendem Tag werden innerhalb der JNLP-Datei die Werte für “codebase” und “main-class” ausgetauscht. <replace dir="C:/Entwicklung/Projekt/dist">    <include name="launch.jnlp"/>    <replacefilter token=‘codebase="file:/C:/Entwicklung/Projekt/dist/"’ value=‘codebase="http://domain.de/p/"’/>    <replacefilter token=‘main-class="bob.pokolm.Main"’ value=‘main-class="bob.pokolm.MainTwo"’/> </replace>

Posted in Java, Skripte | Tagged | Leave a comment

Benutzereingabe bei Ant

Mit dem folgenden Fragment wird ein Kennwort erfragt, ein Skript gestartet und das Kennwort als Parameter übergeben. <target name="deploy-over-script" depends="clean,jar" description="Kopiert Projekt zum Server.">    <input message="Kennwort:"  addproperty="my.pass" />    <exec executable="cmd">       <arg value="/c"/>       … Continue reading

Posted in Java, Skripte | Tagged | Leave a comment

Neural Networks

A Non-Mathematical Introduction to Using Neuroph is lightweight Java framework

Posted in Java, Sonstiges | Leave a comment