Save Exoprted xml file into current folder.

This commit is contained in:
trifonnt 2008-10-03 08:07:24 +00:00
parent ba3130cb9c
commit b85b03a58d
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ public class HDDExportProcessor implements IExportProcessor {
//writer = new OutputStreamWriter(new FileOutputStream(out), "utf-8");
// =================================== Write to Disk
try {
Result dest = new StreamResult(new File("/XmlExport-test-" + fileName + ".xml"));
Result dest = new StreamResult(new File("XmlExport-test-" + fileName + ".xml"));
aTransformer.transform(src, dest);
writer.close();