Намерих интересен списък в Xml Spec :Съгласно този списък не се препоръчва използването на знак #26 (шестнадесетичен:#x1A ).
Вижте пълните диапазони .
Този код замества всички невалидни Xml Utf8 от низ:
public String stripNonValidXMLCharacters(String in) {
StringBuffer out = new StringBuffer(); // Used to hold the output.
char current; // Used to reference the current character.
if (in == null || ("".equals(in))) return ""; // vacancy test.
for (int i = 0; i < in.length(); i++) {
current = in.charAt(i);
if ((current == 0x9) ||
(current == 0xA) ||
(current == 0xD) ||
((current >= 0x20) && (current <= 0xD7FF)) ||
((current >= 0xE000) && (current <= 0xFFFD)) ||
((current >= 0x10000) && (current <= 0x10FFFF)))
out.append(current);
}
return out.toString();
}
взето е от Невалидни XML знаци:когато са валидни UTF8 не означава валиден XML
Но с това все още имах проблем със съвместимостта с UTF-8:
org.xml.sax.SAXParseException: Invalid byte 1 of 1-byte UTF-8 sequence
След като прочетете XML - връщане на XML като UTF-8 от сървлет Току-що пробвах какво се случва, ако задам Contenttype така:
response.setContentType("text/xml;charset=utf-8");
И проработи....