<br><font size=2 face="sans-serif">I think it may have something to do with your file separator slash.</font>
<br>
<br><font size=2 face="sans-serif">Try either a double backslash in your string - \\ or try explicitly using File.separator, that will take the correct file separator for your platform.</font>
<br>
<br><font size=2 face="sans-serif">I've also had problems using spaces in filenames occasionally. &nbsp;This is less likely, but if the slash change doesn't work, try renaming your subdirectory to one without spaces.</font>
<br>
<br><font size=2 face="sans-serif">Wes</font>
<br>
<br>
<br>
<table width=100%>
<tr valign=top>
<td>
<td><font size=1 face="sans-serif"><b>Mark Bennett &lt;mbennett@ideaeng.com&gt;</b></font>
<br><font size=1 face="sans-serif">Sent by: jdom-interest-admin@jdom.org</font>
<p><font size=1 face="sans-serif">10/26/2001 09:28 AM</font>
<br><font size=1 face="sans-serif">Please respond to mbennett</font>
<br>
<td><font size=1 face="Arial">&nbsp; &nbsp; &nbsp; &nbsp; </font>
<br><font size=1 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; To: &nbsp; &nbsp; &nbsp; &nbsp;&quot;Lopez, William&quot; &lt;william.lopez@eds.com&gt;, jdom-interest@jdom.org</font>
<br><font size=1 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; cc: &nbsp; &nbsp; &nbsp; &nbsp;</font>
<br><font size=1 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; Subject: &nbsp; &nbsp; &nbsp; &nbsp;RE: [jdom-interest] help XMLOutputter</font></table>
<br>
<br>
<br><font size=2 face="Courier New">Hello William,<br>
<br>
No problem on the question; newbies unite! &nbsp;:)<br>
<br>
Where you have:<br>
String file = &quot;c:/Documents and Settings/xzs3h2/jbproject/DTDMap/&quot; + newTime<br>
+ &quot;_acceptance.xml&quot;;<br>
<br>
Could you check the value of the file variable after this command? &nbsp;Either<br>
in your debugger or maybe with:<br>
<br>
System.out.println( &quot;file name ='&quot; + file + &quot;'&quot; );<br>
<br>
That might be helpful for debugging.<br>
<br>
Mark<br>
<br>
-----Original Message-----<br>
From: jdom-interest-admin@jdom.org [mailto:jdom-interest-admin@jdom.org]On<br>
Behalf Of Lopez, William<br>
Sent: Friday, October 26, 2001 6:54 AM<br>
To: jdom-interest@jdom.org<br>
Subject: [jdom-interest] help XMLOutputter<br>
<br>
The issue I'm having is probably more of a &quot;basic&quot; coding issue than a JDOM<br>
issue but I'll try my luck here first.<br>
<br>
I'm attempting to use the XMLOutputter class to create XML files from a JDOM<br>
object that is retrieving Clob files from a database so I can see the test<br>
data. Here's the code for that piece:<br>
<br>
 &nbsp; &nbsp; &nbsp;inputsource = new InputSource(is);<br>
 &nbsp; &nbsp; &nbsp;doc = builder.build(inputsource);<br>
<br>
 &nbsp; &nbsp; &nbsp;StringBuffer sb = new StringBuffer();<br>
 &nbsp; &nbsp; &nbsp;String wholeTime = new<br>
java.sql.Timestamp(System.currentTimeMillis()).toString();<br>
 &nbsp; &nbsp; &nbsp;String date = wholeTime.substring(0, 10);<br>
 &nbsp; &nbsp; &nbsp;sb.append(date).append(&quot;_&quot;);<br>
 &nbsp; &nbsp; &nbsp;sb.append(wholeTime.substring(11,19));<br>
 &nbsp; &nbsp; &nbsp;String newTime = sb.toString();<br>
<br>
 &nbsp; &nbsp; &nbsp;String file = &quot;c:/Documents and<br>
Settings/xzs3h2/jbproject/DTDMap/acceptance.xml&quot;;<br>
 &nbsp; &nbsp; &nbsp;OutputStream os = new FileOutputStream(file, true);<br>
 &nbsp; &nbsp; &nbsp;XMLOutputter xo = new XMLOutputter(&quot; &nbsp; &quot;, true, &quot;UTF-8&quot;);<br>
 &nbsp; &nbsp; &nbsp;xo.setTextNormalize(true);<br>
 &nbsp; &nbsp; &nbsp;xo.output(doc, os);<br>
<br>
This works but I don't want to append [new FileOutputStream(file, true);]<br>
each XML image in the one acceptance.xml file. I was trying to use the<br>
following code to create different file names: String file = &quot;c:/Documents<br>
and Settings/xzs3h2/jbproject/DTDMap/&quot; + newTime + &quot;_acceptance.xml&quot;; but I<br>
was receiving a &quot;bad parameter&quot; error message at: OutputStream os = new<br>
FileOutputStream(file, true);<br>
<br>
Sorry for the newbie question but any suggestions would be appreciated.<br>
<br>
Thanks,<br>
<br>
William Lopez<br>
EDS - Health and Insurance Solution Centre<br>
MS C3-1C-37<br>
5400 Legacy Drive<br>
Plano, TX 75024<br>
<br>
* phone: +01-972-604-3372 (834-3372)<br>
* mailto:william.lopez@eds.com<br>
www.eds.com<br>
<br>
<br>
_______________________________________________<br>
To control your jdom-interest membership:<br>
http://lists.denveronline.net/mailman/options/jdom-interest/youraddr@yourhos<br>
t.com<br>
<br>
_______________________________________________<br>
To control your jdom-interest membership:<br>
http://lists.denveronline.net/mailman/options/jdom-interest/youraddr@yourhost.com<br>
</font>
<br>
<br>