String text = (String) args.get(0);
String fromFormat = (String) args.get(1);
String toFormat = (String) args.get(2);
//System.out.println("ConvertString.exec called with "+fromFormat+"/"+toFormat+">>>"+text+"<<<");
Converter converter = ConverterFactory.getConverter(fromFormat, toFormat);
String converted = converter.convert(text);
return new freemarker.template.SimpleScalar(converted);
}
}