<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2600.0" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>If I want to read a fiile in, do something and put 
it out in the same file,</FONT></DIV>
<DIV><FONT face=Arial size=2>I try this:</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>&nbsp;try{<BR>&nbsp;&nbsp;&nbsp;&nbsp; Document doc 
= builder.build(fn);</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp;&nbsp; //&nbsp;to something that 
changes&nbsp;the doc</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp;&nbsp; File outf = new 
File(outfile);<BR>&nbsp;&nbsp;&nbsp;&nbsp; PrintWriter out = new PrintWriter(new 
FileWriter(outf));<BR>&nbsp;&nbsp;&nbsp;&nbsp; XMLOutputter outputter = new 
XMLOutputter();<BR>&nbsp;&nbsp;&nbsp;&nbsp; outputter.setEncoding("ISO-8859-1" 
);<BR>&nbsp;&nbsp;&nbsp;&nbsp; outputter.output(doc, out);</FONT></DIV>
<DIV><FONT face=Arial size=2>&nbsp;&nbsp; }</FONT></DIV>
<DIV><FONT face=Arial size=2>&nbsp; catch (Exception ex) 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
System.out.println(ex.getMessage());}</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>it won't&nbsp;allow access to the file to write out 
the changed version.</FONT></DIV>
<DIV><FONT face=Arial size=2>Not sure I understand why because I thought builder 
dissociates from</FONT></DIV>
<DIV><FONT face=Arial size=2>the file after its parsed intoa jdom? Whats the 
right approach here?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Thanks</FONT></DIV>
<DIV><FONT face=Arial size=2>Brian</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV></BODY></HTML>