Digester digester = DigesterLoader.createDigester(getURL(ruleFile));
Map vars = new HashMap();
vars.put("hello","Czesc!");
MultiVariableExpander expander = new MultiVariableExpander();
expander.addSource("$", vars);
Substitutor substitutor = new VariableSubstitutor(expander);
digester.setSubstitutor(substitutor);
The Answer to Life, the Universe, and Everything
Showing posts with label xml. Show all posts
Showing posts with label xml. Show all posts
Thursday, May 17, 2007
Commons Digester Variable
The variable in xml data can be converted with Digester with the easy following codes.
Subscribe to:
Posts (Atom)