1

I have used jxl library to read excelsheet and it works fine for String and Numbers but now I also want to read Chart from that excel sheet. As I don''t know how to read Chart using this library. can anyone tell me, how do I do?

Karsan
  • 269
  • 3
  • 14

1 Answers1

1

You can try Apache POI. This is the best as per my experience. I was able to grab some information from Excel2007 charts, few years ago. Apache POI should have more and more options by now.

You may able to use XSSFChartSheet, XSLFChart, ...etc classes.

Read these as well.

How to get chart info from an Excel spreadsheet using Apache POI?

http://poi.apache.org/spreadsheet/

Apache POI Limitations

Community
  • 1
  • 1
sura2k
  • 7,365
  • 13
  • 61
  • 80
  • Thanx :) I have read about Apache POI but is it possible to do same with jxl library ? – Karsan Mar 24 '14 at 11:00
  • I don't think so. Here is good answer for your question, http://stackoverflow.com/questions/14980717/what-is-the-better-api-to-reading-excel-sheets-in-java-jxl-or-apache-poi – sura2k Mar 25 '14 at 10:15