...
| No Format |
|---|
// Instantiate Smooks with the config...
Smooks smooks = new Smooks("smooks-config.xml);
// Filter the input message to the outputWriter, using the execution context...
smooks.filter(new StreamSource(messageInStream), new StreamResult(messageOutStream));
|
...