Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Error on line 21531 of document : An invalid XML character (Unicode: 0xc) was found in the element content of the document. Nested exception: An invalid XML character (Unicode: 0xc) was found in the element content of the document.
if((current == 0xc))
System.out.println("i: "+i+": current: "+current );
if (
(current == 0x9) ||
(current == 0xA) ||
(current == 0xD) ||
((current >= 0x20) && (current <= 0xD7FF)) ||
((current >= 0xE000) && (current <= 0xFFFD)) ||
((current >= 0x10000) && (current <= 0x10FFFF))
)
out.append(current);
else{
System.out.println("i: "+i+": current: "+current );
}
if((current == 0xc))
System.out.println("i: "+i+": current: "+current );