1金币
本帖最后由 Lynn.Dou 于 2022-6-27 14:06 编辑
用gcexcel 5.1.2 导出json后,再用spreadJs加载,第一行被隐藏了。这是原文件,用wps打开:
用gcexcel导出json后,在spredJs打开,数据被隐藏了:
导出json代码:
- public void testFileterBug(){
- Workbook w = new Workbook();
- w.open("/Users/eleme/Documents/雨燕文件测试/表头丢失620bug上传spreadJs.xlsx");
- String s = w.toJson();
- System.out.println(s);
- try {
- BufferedWriter out = new BufferedWriter(new FileWriter("/Users/eleme/Documents/雨燕文件测试/gcexcel解析json.json"));
- out.write(s);
- out.close();
- System.out.println("文件创建成功!");
- } catch (IOException e) {
- }
- }
复制代码 原excel文件和导出json文件在附件里。
|
最佳答案
查看完整内容
更新进展:
此问题已在V5.1.4修复,您可以通过maven升级测试下。
|