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