vote up 0 vote down star

how to escape special characters in jasperreports ?

I want to escape special characters like :- é, â, è, ^, @ in jasper reports, so is there any way we can escape this characters ?

flag

36% accept rate

1 Answer

vote up 0 vote down

Try this:

  • instead of 'é' use '\u00E9'
  • instead of 'â' use '\u00E2'
  • instead of 'è' use '\u00E8'

etc.

link|flag
I have string comming from oracle, at a short i want to replace all the special character is it possible ? is there any api for it ? – Bihag Raval Oct 9 at 4:40
then check what's the encoding of your db, then check what's the encoding of your jasperreports templates. bear in mind that oracle jdbc has problems transforming some special ms word characters into unicode – Boris Pavlović Oct 9 at 7:45

Your Answer

Get an OpenID
or

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