Monthly Archives: Januar 2009

Velocity ohne Template-Datei

import org.apache.velocity.app.Velocity; import org.apache.velocity.VelocityContext; import java.io.StringWriter; public class StartYourEngines {   public static void main(String[] args) throws Exception {     VelocityContext context = new VelocityContext();     context.put("args", args);     String template = "args = #foreach ($arg in … Continue reading

Posted in Java | Tagged | Leave a comment

Notepad++ mit Dateivergleich

Notepad2 ist eine guter Editor, aber folgende Punkte führten zur Suche nach einem Ersatz. verschiedene Dokumenten gleichzeitig öffnen die Suche über mehrere Dateien hinweg Dateiinhalte als Hexadezimalcode anzeigen

Posted in Sonstiges | Leave a comment