Java parsing XML document gives “Content not allowed in prolog.” error [duplicate]

Please check the xml file whether it has any junk character like this �.If exists,please use the following syntax to remove that.

String XString = writer.toString();
XString = XString.replaceAll("[^\\x20-\\x7e]", "");

Leave a Comment