문제

I have an excel sheet with some non-english characters in it and when I try to grab the contents via

sheet.getColumn(column)[row].getContents()

It returns the string with the replacement character \uFFFD instead of the non-english character which I was going to then translate to unicode using StringEscapeUtils.escapeJava.

//"L\u00F6schen" - correct
return StringEscapeUtils.escapeJava("Löschen"); 

//"L\uFFFDschen" - incorrect
return StringEscapeUtils.escapeJava(sheet.getColumn(column)[row].getContents());

//"L�schen" - incorrect
System.out.print(sheet.getColumn(column)[row].getContents());
도움이 되었습니까?

해결책

This was really frustrating and it seems that jexcelapi is missing a lot of support.

Went with Apache POI instead and it worked great with no issues.

다른 팁

Try to set encoding through WorkbookSettings when initializing Workbook. For example:

WorkbookSettings settings = new WorkbookSettings();
settings.setEncoding("Your java charset name");
Workbook workbook = Workbook.getWorkbook(source, settings);

Then getContents() method should correct content of cell

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top