ASP Error: 70
Description: Permission denied
Source: Microsoft VBScript runtime error
|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: XML-escape string
"Emmanuil Batsis (Manos)" <mbatsis@n...> writes: > I'm sure there is some code out there and I'd like to avoid > reinventing the wheel so... > > What I'm looking for is Java class/code that takes in a string and > encodes illegal characters to entities. Do you want to output the escaped string, or do you want to do further processing on it? If you want to output it, you can use the standard javax.xml.transform.stream.StreamResult, and report your unescaped string as a characters event e.g, TransformerHandler th = SAXTransformerFactory.newTransformerHandler(); th.setResult (new StreamResult (System.out)); char[] c = new char[unescapedString.length()]; unescapedString.getChars(0, (c.length-1), c, 0); th.characters (c, 0, c.length); I skipped a few steps, but this should point you to a possible solution. Ari.
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|
|||||||||

Cart








