Questions tagged [jexcelapi]

Java Excel API(jexcelapi) - A Java API to read, write, and modify Excel spreadsheets

Java Excel API is a mature, open source (GNU Lesser General Public License) Java API enabling developers to read, write, and modifiy Excel spreadsheets dynamically. Java developers can read Excel spreadsheets, modify them with a convenient and simple API, and write the changes to any output stream (e.g. disk, HTTP, database, or any socket).

Similar Java libraries include Apache POI

Major features include:

  • Reads data from Excel 95, 97, 2000, XP, and 2003 workbooks
  • Reads and writes formulas (Excel 97 and later only)
  • Generates spreadsheets in Excel 2000 format
  • Supports font, number and date formatting
  • Supports shading, bordering, and coloring of cells
  • Modifies existing worksheets
  • Is internationalized, enabling processing in almost any locale, country, language, or character encoding (formulas are currently only supported in English, French, Spanish, and German, but more can be added if translated)
  • Supports copying of charts
  • Supports insertion and copying of images into spreadsheets
  • Supports logging with Jakarta Commons Logging, log4j, JDK 1.4 Logger, etc

Known Limitations:

  • JExcelApi does not generate or chart, graph or macro information. This information is however preserved when spreadsheets are copied
  • When adding images to a sheet, only PNG image formats are supported

Useful Links:

207 questions
0
votes
1 answer

taking strings from excel cells and entering them into a text box on a website

Hi I'm trying to write a program in java, with the jexcel api that takes the text in every cell in the first column of an excel spreadsheet, and then entering it into a text box online (for example, google translate), and then automatically…
user1504517
  • 15
  • 1
  • 4
0
votes
1 answer

Is it possible to call JExcel api on android activity using throws exceptions?

So, I am trying to use JExcel to write data from an array into an excel sheet. This has to be done inside of an android. So, I have an activity set up to write the excel sheet. public void addListenerOnButtonSync() { final Context context =…
Gautam
  • 49
  • 5
0
votes
1 answer

jexcel generating error on creating file

InputStream inp = new FileInputStream("workbook.xls"); //InputStream inp = new FileInputStream("workbook.xlsx"); Workbook wb = WorkbookFactory.create(inp); its now working this way JExcel to write to Excel Worksheets with my Java Application.…
user1395670
0
votes
1 answer

Does JExcelAPI works with jre 1.5?

I've downloaded JExcelAPI version 2.6.12, and I've not been able to run it using JRE 1.5, only with JRE 1.6. Can anybody confirm this? or maybe point me which version of JExcel works with JRE 1.5? I haven't been able to find it on the JExcel…
Fernando Moyano
  • 1,097
  • 4
  • 15
  • 29
-1
votes
1 answer

How do I know which cell is highlighted in jexcell javascript library?

I want to merge the cells marked with jexcel. I don't know how to do that. More specifically, I want to merge cells into a dynamic state and write them into merged cells in MySQL. How to do it