您好,使用下面的代码进行了测试
- Workbook workbook = new Workbook();
- // 1. Culture is init-only
- // 2. Use Locale.CHINA for Simplified Chinese
- workbook.setCulture(Locale.CHINA);
- SjsOpenOptions options = new SjsOpenOptions();
- options.setIncludeFormulas(true);
- options.setIncludeStyles(true);
- workbook.open("The path to input.sjs", options);
- // 3. Avoid memory leak
- try (FileOutputStream fs = new FileOutputStream("The path to output.ssjson")) {
- workbook.toJson(fs);
- }
复制代码 我们在docker 中创建一个 centos 7.9 jdk 8 环境,执行上述代码,此问题仍然无法重现。
我们需要排除其他代码的因素。您是否可以再整理下代码。
以及确认下SpreadJS是17.0.8版本,GcExcel是7.1.0版本。
以及清理下缓存。
|
|