I am generating pdf from a SQL query on a java app. I have 4M pdf to print.
On the 15092th pdf. I am encountering this error
Invalid xml character (unicode 0xc) was found in the element content of the document
I tried to replace as what other blogs are saying.
html = html.replaceAll("\000"," ");
html = html.replaceAll("/\u000c+/g", "");
I don't know which is which I just placed them to my html.
Anyone with an idea?
Thanks!