Tagged Questions

19
votes
3answers
6k views

JExcelAPI vs Apache POI, which is better?

I have to parse a simple Excel file (xls or xlsx, free to choose) to extract data from it. Each row will contain an account data; each column will be like FirstName, e-mail etc. No fancy formating in ...
3
votes
2answers
305 views

Writing JTable into Excel

I am planning to move the contents of a JTable into a Microsoft Excel sheet. The Excel sheet should have some format specifications. For instance if a column has a value 'A' it should be green in ...
1
vote
2answers
403 views

Evaluation from Apache POI and JExcel Api

I need create Excel woorkbooks in Grails, Grails support both Apache POI and JExcel Api, but I would like you to tell me about the advantages and disadvantages of both. According to I know, Apache ...
0
votes
0answers
228 views

CSV to excel file

I am given a CSV file of below format and was asked to write a java pgm to read this csv in the same exact format without modifying. Initially, I changed the csv to excel file by saving it as excel ...
0
votes
1answer
132 views

How to Track Changes with jexcelapi or Apache HSSF

I am writing an MS Excel file with Java and what to set the "Track Changes" flag so I can see where people make modifications later. How can I set this flag in either jexcelapi or Apache HSSF?
0
votes
2answers
1k views

Problem when extracting excel data using POI in JAVA?

I have just Extracted the cells from the excel sheet using POI, everything is working fine. But whenever there is an empty cell, the very next right cell data is what I get as a output. But, if exists ...
0
votes
4answers
2k views

Choosing an excel java api

All I need to do is open an MS excel sheet - not sure which kind yet (2003, 2007, etc.) - and parse the information in each row into an object. I'm performing only readonly operations. out of Apache ...