When importing string values with french characters (like é), the character is replaced with a "?"
My windows version is Dutch-Belgian XP
Logged In: YES user_id=1459423
I have the same problem. Is there a solution?
Yes: You have to set the Encoding Value on WorkbookSettings!
WorkbookSettings ws = new WorkbookSettings(); ws.Encoding = "UTF-7"; Workbook workbook = Workbook.getWorkbook (strPfadZuImportDatei, ws);
Logged In: NO
Just the thing I was looking for, thanks. WorkbookSettings set to my iso-charset worked like a charm and solved the issue.
Log in to post a comment.
Logged In: YES
user_id=1459423
I have the same problem. Is there a solution?
Logged In: YES
user_id=1459423
Yes: You have to set the Encoding Value on
WorkbookSettings!
WorkbookSettings ws = new WorkbookSettings();
ws.Encoding = "UTF-7";
Workbook workbook = Workbook.getWorkbook
(strPfadZuImportDatei, ws);
Logged In: NO
Just the thing I was looking for, thanks. WorkbookSettings
set to my iso-charset worked like a charm and solved the
issue.