Tagged Questions

8
votes
2answers
24k views

Producing valid XML with Java and UTF-8 encoding

I am using JAXP to generate and parse an XML document from which some fields are loaded from a database. Code to serialize the XML: DocumentBuilder builder = ...
0
votes
1answer
53 views

Parsing different language characters and accents into valid XML

I have a bunch of XML data with different language data, which has accents. Example:- <text content="vídeo..." /> or <text content="vidéo..." /> This data is coming from MySQL - I'm ...
0
votes
6answers
684 views

What is an XML infoset and in what ways is it different to an XML document?

I've tried to read http://www.w3.org/TR/xml-infoset/ and the wikipedia entry. But frankly I'm still not sure what the difference is. The quote : An XML document has an information set if it is ...