git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352857
13f79535-47bb-0310-9956-
ffa450edef68
/** length of footnotes text*/
int _ccpFtn;
+ /** The name of the file to write to */
+ String _outName
+
/** OLE stuff*/
private InputStream istream;
/** OLE stuff*/
}*/
try
{
+ _outName = args[1];
WordDocument file = new WordDocument(args[0]);
file.closeDoc();
}
//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();