Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am currently working on a project with multiple languages we also have french, the only problem is that it displays weird characters, in stead of normal french,

Can some1 help me with this ( its in java ) thanks from beforehand

share|improve this question
this could be a font or encoding issue - you need to say more about the environment and transcoding boundaries (I/O.) Console? Database? Servlet? JSP? Operating system? – McDowell May 11 '11 at 12:46
Never heard of "french characters". I assume you mean accented characters. – Ingo May 12 '11 at 8:32

4 Answers

up vote 1 down vote accepted

If you are using Resource bundles in the ".properties" format, then this issue can be resolved by escaping al the not standard characters with their respective Unicode notation.

.propertie resource bundles are always in ISO-8859-1 encoding, so most likely you problem comes from converting the ISO-8859-1 encoding to UTF-8

You can easily convert all these characters to escaped Unicode representation by using one of these tools: native2ascii or AnyEdit

using nonstandard characters in resource bundles

share|improve this answer

It has nothing to do with the font, but the encoding. I suggest you switch to UTF-8, a good standard for international characters.

share|improve this answer
we currently have UTF-8 installed, and it doesn't work – Jonathan May 11 '11 at 13:01

Most likely this has nothing to do with fonts, and the real problem is an encoding issue.

share|improve this answer

Please use Character Encoding Filers at server side this will resolve your issue

please check bwloe link

Character Encoding

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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