Tagged Questions
The hssf tag has no wiki summary.
5
votes
5answers
4k views
Which library should I use to write an XLS from Linux / Python?
I'd love a good native Python library to write XLS, but it doesn't seem to exist. Happily, Jython does.
So I'm trying to decide between jexcelapi and Apache HSSF:
...
3
votes
3answers
8k views
How do I get the (Java Apache POI HSSF) Background Color for a given cell?
I have an existing excel spreadsheet, which I am accesssing and reading values from, I am using Apache POI HSSF.
It is initialised like this:
HSSFSheet sheet;
FileInputStream fis = new ...
2
votes
2answers
157 views
Recalculating formulas in spreadsheet using Apache POI
I'm trying to use POI XSSF to evaluate some Excel formulas.
The values do not have to be saved, and I may have to calculate many formulas, so I'm trying to do it all in the same cell.
The problem is ...
2
votes
1answer
2k views
Apache POI both XSSF and HSSF using
I have a problem with Apache POI project.
I failed to use XSSF and HSSF in the "Same Java Class". Which jar should I download or which artifact should I get add into maven?
I want to handle both xls ...
1
vote
1answer
23 views
Why is a cloned HSSFCellStyle not equal to the style it was cloned from?
I am using one HSSF Workbook as a template for another. Because of how that works, as you probably know if you're reading this, I cannot simply take a cell from workbook 1 and set its style to the ...
0
votes
1answer
26 views
how to restrict XLS2CSVmra to one sheet only?
i need to read XLS(not XLSX) file efficiently and I found the XLS2CSVmra example of POI, the problem is that I need to read one sheet only (i have sheet name sheet index etc.).
Is there any way to ...
0
votes
1answer
66 views
Set page view mode in excel file using apache poi
Excel has different modes for viewing a sheet: Normal, Page Layout, Page Break Preview. (In excel 2010: in the view tab). The view mode is saved seperately for each sheet in a workbook and is restored ...
0
votes
0answers
118 views
In Apache POI HSSF, Cell Type Still Shows Up as “General” Excel, Even Though it's Number-Formatted
I am using Apache POI HSSF to generate an Excel spreadsheet from my Java Web app.
I need a cell formatted as "Number" with 2 decimal points. (My values in Java are BigDecimals, but I can convert them ...
0
votes
2answers
50 views
How to store directly data in Apache POI XLS?
I use Apache POI HSSF API for Java to generate a long long report as XLS file. The problems is date is really large and my memory fails before calling wb.write(out);. So I wonder if there is some way ...
0
votes
1answer
347 views
Java POI HSSF Memory Handling Question
I have a design question on how to design parsing a large excel file say 1000 x 100 Rows, and about 10 tabs.
Each Tab having a set of records with primary key as the first col. but these could be ...
-1
votes
4answers
146 views
List iteration taking so much time?
I have List (of class). having 1800 of count and each object has 90 properties. When I terate earch with 90 properties taking more and more time. How to resolve this
Dim cellIntStyle As ...