vote up 1 vote down star

I am trying to create a pdf document with JasperReports. Everything works fine, except than when an & character appears, some tags are not interpreted, and appear in the final document.

Do i have to escape de "&" character? I've already tried writing & instead, as well as wrapping a around it. In the first case, & appeared in my pdf, and in the second one, the ampersand dissapeared from it.

My JasperReport element is:

<textFieldExpression   class="java.lang.String"><![CDATA[$P{footer}]]></textFieldExpression>

Eg. desired: a & b

First attempt: a "& amp;" b. Result: a "& amp;" b

Second attempt: a "< ! [ CDATA[& ]] > b". Result: a b

(I've added some spaces and quotes to avoid string formatting in this editor)

Any clues?

EDIT: Please read first comment.

flag

61% accept rate
What I'm actually writing is &amp; and <![CDATA[&]] >, but the text editor automatically formats it. – Tom Apr 23 at 20:00
Are you using iReport 3.0 (classic) or the net beans version to edit the JRXML? – m_pGladiator May 12 at 11:33
@m_pGladiator iReport – Tom May 12 at 13:09

1 Answer

vote up 0 vote down

Have you tried escaping to ASCII or Unicode:

  • "a &#38; b"
  • "a &#x0026; b"

?

link|flag

Your Answer

Get an OpenID
or

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