]> source.dussan.org Git - poi.git/commitdiff
You must specify the output file for the main function now
authorSaid Ryan Ackley <sackley@apache.org>
Mon, 23 Sep 2002 20:14:17 +0000 (20:14 +0000)
committerSaid Ryan Ackley <sackley@apache.org>
Mon, 23 Sep 2002 20:14:17 +0000 (20:14 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352857 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hdf/extractor/WordDocument.java

index 5d7f5583257d4c0162552969e03cd8f53d979576..b21dead6f0b9a97416bf9174936bb97f5197a52d 100644 (file)
@@ -125,6 +125,9 @@ public class WordDocument
   /** length of footnotes text*/
   int _ccpFtn;
 
+  /** The name of the file to write to */
+  String _outName
+
   /** OLE stuff*/
   private InputStream istream;
   /** OLE stuff*/
@@ -158,6 +161,7 @@ public class WordDocument
       }*/
       try
       {
+          _outName = args[1];
           WordDocument file = new WordDocument(args[0]);
           file.closeDoc();
       }
@@ -1529,7 +1533,7 @@ public class WordDocument
     //test code
     try
     {
-      OutputStreamWriter test = new OutputStreamWriter(new FileOutputStream("/home/andy/test.xml"), "8859_1");
+      OutputStreamWriter test = new OutputStreamWriter(new FileOutputStream(_outName), "8859_1");
       test.write(_headerBuffer.toString());
       test.write(_bodyBuffer.toString());
       test.flush();