diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Fop.class | bin | 4103 -> 4052 bytes | |||
-rw-r--r-- | lib/Fop.java | 9 |
2 files changed, 2 insertions, 7 deletions
diff --git a/lib/Fop.class b/lib/Fop.class Binary files differindex d48961ea4..3efe0e708 100644 --- a/lib/Fop.class +++ b/lib/Fop.class diff --git a/lib/Fop.java b/lib/Fop.java index 4a67db973..d304cc3ed 100644 --- a/lib/Fop.java +++ b/lib/Fop.java @@ -61,12 +61,7 @@ import org.xml.sax.SAXException; import org.xml.sax.SAXParseException; // Java -import java.io.FileReader; -import java.io.File; -import java.io.FileWriter; -import java.io.PrintWriter; -import java.io.IOException; -import java.io.FileNotFoundException; +import java.io.*; import java.net.URL; // FOP @@ -200,7 +195,7 @@ public class Fop { driver.addElementMapping("org.apache.fop.svg.SVGElementMapping"); driver.addPropertyList("org.apache.fop.fo.StandardPropertyListMapping"); driver.addPropertyList("org.apache.fop.svg.SVGPropertyListMapping"); - driver.setWriter(new PrintWriter(new FileWriter(pdffile))); + driver.setOutputStream(new FileOutputStream(pdffile)); driver.buildFOTree(parser, fileInputSource(fofile)); driver.format(); driver.render(); |