monitorjbl / excel-streaming-reader

An easy-to-use implementation of a streaming Excel reader using Apache POI
Apache License 2.0
943 stars 342 forks source link

对迁移不太友好 #220

Open cdn198 opened 3 years ago

cdn198 commented 3 years ago

StreamingWorkbook、StreamingSheet、StreamingRow实现了poi里面的抽象接口,但是很多方法没有具体实现,直接抛出UnsupportedOperationException,如果之前的代码使用的是HSSF、XSSF、SXSSF等原生类,迁移到Streaming时,代码编译没有问题,但是在运行时可能会因为部分方法不支持,抛出UnsupportedOperationException,导致原来的功能受到影响。

建议对不支持的方法在编译期会有个提示或者直接编译不通过。