monitor.setStatusText(i18n.tr("Exportiere Daten"));
monitor.addPercentComplete(4);
}
writer = new BufferedWriter(new OutputStreamWriter(os,encoding));
VelocityService service = (VelocityService) Application.getBootLoader().getBootable(VelocityService.class);
VelocityEngine engine = service.getEngine(HBCI.class.getName());
if (engine == null)
throw new Exception("velocity engine not found");
Template template = engine.getTemplate(((VelocityFormat)format).getTemplate().getName(),"ISO-8859-15");
template.merge(context,writer);