0
votes
0answers
87 views

apache poi - reading comments from blank and missing (null) cells

I'm trying to read comments from all Excel documents cell's (using Apache POI). I have problem when empty (or missing) cells contains comments. Currently only solutions that I found is to: iterate ...
0
votes
0answers
99 views

Apache POI for Word: merged cells

how to create table in Word Document with merged cells like this | | | | | | | | | | |
0
votes
1answer
177 views

Apache POI excel cell character Limit

First of all I'm new to POI. I am extracting data from backend and saving it to an excel file. But I noticed that one cell only allows a max of 10 characters. This does not happen on other cells. Can ...
0
votes
1answer
237 views

How to check for emptiness of a numeric cell in Apache POI?

All is in the title. How can I check if a CELL_TYPE_NUMERIC is empty with POI ? With strings i can use the isEmpty() method but with int I have no ideas (null is not allowed and zero just wont do ...
0
votes
1answer
710 views

Maximum merged cell content length - Java POI 3.7

I am aware that the maximum length of a single HSSF Workbook cell's content is 32,676 characters. If I merge cells over 3 rows can I get a max length of 3*32676 or does it not work this way?
-3
votes
1answer
71 views

how do i know start from which row has data in excel file in POI

how do i know start from which rows has data in excel file? Like, one excel file has data from second rows and another file data is from thrid rows. thanks
1
vote
2answers
457 views

POI: Cell format for 2000 and above records is corrupted

Can anyone help me on how can I fix this one. I'm using vb.net 2003 and I've tried to generate a report in Excel using POI, but I have a problem when the records is above 2000, cell formats has been ...
3
votes
1answer
451 views

How to determine whether a spread-sheet cell contains a date, or a real number?

When a cell in a spreadsheet contains a simple date (mm/dd/yyyy) the poi API flags the cell-type as 'numeric'. This is probably because spreadsheets ( IMO ) historically recognize only strings and ...
0
votes
1answer
504 views

Is there a way to add an image to a Cell using the POI Api?

I'm making an application that converts our data structure to an excel file. We're currently using POI to do the conversion. The problem is that the Cell only supports Strings, Numbers and formulas, ...