XmlSpec で興味深いリストを見つけました。 :そのリストによると、キャラクター#26を使用することはお勧めしません(Hex:#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");
そしてそれはうまくいきました....