JavaOutputStream understandingExcel file format basics
新手友好度1-100 的估计分数,表示该议题对首次贡献者的友好程度。
45
研究方向
First, examine the EasyExcel source code, particularly the ExcelWriter and its write method to understand how data is flushed to the OutputStream. The issue likely arises because the XLSX format requires all sheet data to be written before finalizing the ZIP structure (due to the XML schema). To verify, look at the `write()` method in `com.alibaba.excel.ExcelWriter` and the `finish()` method. Consider whether streaming via a custom OutputStream that writes chunks as they come is feasible. Check if there are any open issues or discussions about streaming export in the repository. Suggest comparing with libraries like Apache POI that handle streaming differently.
XLSX文件导出问题 · alibaba/easyexcel#4088 | Good First Issue