Results 1 to 5 of 5
- 04-21-2010, 04:51 PM #1
Member
- Join Date
- Apr 2010
- Posts
- 8
- Rep Power
- 0
How to encode a fileHandler to output french characters ?
Hi everyone,
I'm trying to encode a fileHandler to create a file that contains french special characters (è, é, . . . .).
I tried the following code:
fileHandler.setEncoding("ISO-8859-1");
and the following
fileHandler.setEncoding("UTF-8");
But still the output returns a question mark instead of the é and a square instead of the é respectively.
Can anyone advice how to encode the fileHandler to have french characters in the output file ?
Thanks
- 04-21-2010, 04:57 PM #2
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,420
- Blog Entries
- 7
- Rep Power
- 17
Are you sure it's not a font problem? There can be a couple of problems:
1) en- and decoding the bytes
2) displaying the resulting characters.
Try to write such a special character as if it were an int (int)chr and see if the Unicode value is correct. If so you have to use another font. If not, you have an en- or decoding problem.
kind regards,
Jos
- 04-22-2010, 05:46 AM #3
Senior Member
- Join Date
- Jan 2009
- Posts
- 671
- Rep Power
- 5
Try encoding with UCS-2. UTF-8 and ISO-8859-1 are both legacy formats that do not support international character sets.
- 04-22-2010, 09:20 AM #4
Moderator
- Join Date
- Apr 2009
- Posts
- 10,481
- Rep Power
- 16
- 04-22-2010, 09:21 AM #5
Member
- Join Date
- Apr 2010
- Posts
- 8
- Rep Power
- 0
Similar Threads
-
Url Encode
By Sean_J in forum New To JavaReplies: 0Last Post: 03-19-2010, 02:54 PM -
Weird error with FileHandler, java.util.logging.FileHandler
By nmvictor in forum New To JavaReplies: 2Last Post: 03-09-2010, 08:18 AM -
Java logging - log file location for FileHandler
By kfir.wolfson@gmail.com in forum Advanced JavaReplies: 2Last Post: 03-24-2009, 08:22 AM -
Java, output string, getting correct output? HELP!
By computerboyo in forum New To JavaReplies: 2Last Post: 02-25-2009, 11:44 PM -
Getting problem in UTF-8 Encode/Decode with Java
By sagarsway in forum Advanced JavaReplies: 2Last Post: 12-22-2008, 07:01 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks