我已经使用jxl库来读取excelsheet,它适用于String和Numbers,但现在我也想从那个excel表中读取Chart。因为我不知道如何使用此库阅读Chart。任何人都可以告诉我,我该怎么办?
答案 0 :(得分:1)
您可以尝试Apache POI。根据我的经验,这是最好的。几年前,我能够从Excel2007图表中获取一些信息。 Apache POI现在应该有越来越多的选择。
您可以使用XSSFChartSheet,XSLFChart,...等类。
阅读这些内容。
How to get chart info from an Excel spreadsheet using Apache POI?