我正在尝试将一些外来字符写入 Excel 97/2003 文件(即中文、日文、韩文等),但遇到了麻烦。我已经尝试了很多,但似乎没有任何效果。可能吗?我编写此单元格的代码如下。
HSSFWorkbook workbook = new HSSFWorkbook();
HSSFSheet sheet = workbook.createSheet("Sample sheet");
...
HSSFRow row = sheet.createRow(0);
HSSFCell firstCell = row.createCell((short)0);
HSSFFont theFont = workbook.createFont();
theFont.setFontName("Arial Unicode MS");
HSSFCellStyle style = workbook.createCellStyle();
style.setFont(theFont);
firstCell.setCellStyle(style);
firstCell.setCellValue(firstColVal);