RE: this is the ultimate stupid question, but i have to ask...

Subject: RE: this is the ultimate stupid question, but i have to ask...
From: Damian Pooley <damianp@xxxxxxxxxxxxxx>
Date: Thu, 6 Apr 2000 10:43:31 +1000
> turning xml into a string representation.

well, the way i've always done it (shock-horror)

String s = "";

s += xmlDoc.getDocumentElement();

to work, you have to use += , cant just do s = xmlDoc.getDocumentElement();
I know there's some other ways hidden in our code somewhere using streams
but this strange way works for me so I keep using it ;)

dP


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread