Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking java code to check if a string is valid XML.

share|improve this question
7  
Don't try it! Read: stackoverflow.com/questions/701166/… – MichaƂ Niklas Sep 27 '11 at 6:24

closed as not a real question by stema, Bombe, Tim Post Sep 27 '11 at 7:13

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

It's not possible to validate XML with regular expressions. XML is not a regular language.

Use an XML parser to try to parse the string as XML or else validate the XML document against a schema, for example a DTD or XSD file.

share|improve this answer

you can check whether document or text is well-formed, by using a parser. i think this link will help you:

http://www.roseindia.net/xml/dom/DOMParserCheck.shtml

for string replace this line in the link:

InputSource is = new InputSource(xmlFile);

with

ByteArrayInputStream stringStream=new ByteArrayInputStream("XML Text".getBytes());

InputSource is=new InputSource(stringStream);

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.