| Author |
xml ingore whitespace
|
jim li
Ranch Hand
Joined: May 20, 2008
Posts: 177
|
|
hi
i am using :
DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
docFactory.setIgnoringElementContentWhitespace(true);
docFactory.setFeature("http://apache.org/xml/features/dom/include-ignorable-whitespace",
false);
DocumentBuilder docBuilder = docFactory.newDocumentBuilder();
Document doc = docBuilder.parse(xsltFile);
but it does not ingore the white space, i do not want to remove all space manually , can anyone give me a solution
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16480
|
|
Whitespace is only "ignorable" if you have a schema which describes the document. (Your code doesn't validate, so you don't have a schema.) Otherwise there is no way for the parser to tell which whitespace you are not interested in.
|
 |
 |
|
|
subject: xml ingore whitespace
|
|
|