Open daniel-shuy opened 2 years ago
Oh wow that was fast, thanks @pjfanning!
@pjfanning just realized its for your fork 😅 , could you create a PR here as well?
this is not my repo and my PRs here have been not been merged in recent past - I didn't fork this project for a laugh
Is this repo no longer maintained? @pjfanning is that why you forked the project?
create a PR yourself and see if it is accepted - I no longer create PRs on this repo - my fork is frequently maintained and its API remains very similar to this one
@pjfanning I see that the last PR and reply from the owner is from 2021, it seems like its no longer maintained. I'll use your fork then, thanks!
StreamingWorkbook#getSheetIndex(String)
andStreamingWorkbook#getSheet(String)
are case sensitive: https://github.com/monitorjbl/excel-streaming-reader/blob/9e2f0202baa663041837c26aa5ae278d31d7c9d6/src/main/java/com/monitorjbl/xlsx/impl/StreamingWorkbook.java#L103-L110 https://github.com/monitorjbl/excel-streaming-reader/blob/9e2f0202baa663041837c26aa5ae278d31d7c9d6/src/main/java/com/monitorjbl/xlsx/impl/StreamingWorkbook.java#L67-L70 https://github.com/monitorjbl/excel-streaming-reader/blob/9e2f0202baa663041837c26aa5ae278d31d7c9d6/src/main/java/com/monitorjbl/xlsx/impl/StreamingWorkbook.java#L29-L36This behavior is inconsistent with
poi-ooxml
, where allWorkbook#getSheetIndex(String)
andWorkbook#getSheet(String)
implementations are case insensitive, eg. XSSFWorkbook#getSheetIndex(String) and XSSFWorkbook#getSheet(String):