Hello, I am trying to specify a unicode character in an xml file that is consumed by digester. When the xml file is processed digester converts the unicode to a literal string. e.g. '\u00AE' becomes the string "\\u00AE" which actually renders to "\u00AE". Is there some way to support unicode in digester?
Your source is XML? In this case you need to use XML character references instead of Java Unicode escapes: &0x00AE; (including the semicolon) would do the trick. For additional info read the XML spec: http://www.w3.org/TR/REC-xml
J.Pietschmann
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
