I get the error below when converting to PDF with flying saucer. I've removed the ampersand charector and it worked, so this seems to be the problem. How do I include ampersand's in my PDF documents? Thanks in advance.

ERROR: 'The entity name must immediately follow the '&' in the entity reference.'

link|improve this question

79% accept rate
try replacing it with '%26' and see if that works. – Kylar Jul 23 '10 at 18:59
without the quotes, of course. – Kylar Jul 23 '10 at 19:00
feedback

3 Answers

up vote 2 down vote accepted

Just replace & with &

NOTE:That won't work for filenames, just content.

link|improve this answer
feedback

You need to escape any XML entities (gt, lt, quot, amp, apos). An easy and effective way to do this is by using the Apache Commons Lang library function StringEscapeUtils.escapeXML.

link|improve this answer
feedback

Have you tried & ?

link|improve this answer
Stackoverflow took out the & and replaced it with a space... – NinjaCat Nov 27 '11 at 20:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.