我正在尝试从Excel工作表中生成图像,而excel工作表包含非常大的数据。但是一旦生成了图像,它就会在linux上显示哈希值而不是数值,但在窗口中它的数值正确显示
ImageOrPrintOptions imgOptions = new ImageOrPrintOptions();
imgOptions.setImageFormat(ImageFormat.getPng());
imgOptions.setOnePagePerSheet(true);
imgOptions.setCellAutoFit(tue);
imgOptions.setQuality(20);
SheetRender sr = new SheetRender(sheet, imgOptions);
System.out.println("Page Count = " + sr.getPageCount());
File outputFile = new File(imgFile);
FileOutputStream fos = new FileOutputStream(outputFile);
sr.toImage(0, fos);