2
votes
6answers
550 views
API to write huge excel files using java
I am looking to write to an excel (.xls MS Excel 2003 format) file programatically using Java. The excel output files may contain ~200,000 rows which I plan to split over number of sheets (64k rows …
1
vote
4answers
76 views
Which is better open source for Excel file parsing in Java?
Which is better API for excel parsing in Java Apache POI or JExcel API?
In terms of speed, memory utilization and code stability.
1
vote
1answer
29 views
HSSFCell - determining what type of numeric
Using Apache POI, I am trying to process a large amount of numeric data. I am checking for the cell type, for instance
case HSSFCell.CELL_TYPE_NUMERIC:
value = …
0
votes
1answer
39 views
excel file not generating after UTF-8 encoding chosen
This part of my code was creating xls file successfuly
FileOutputStream fileOut = new FileOutputStream("c:\\Decrypted.xls");
wb.write(fileOut);
fileOut.close();
when other part of the code had …
0
votes
0answers
14 views
Apache POI path settings doubt
How to integrate Apache POI, Apache Forrest and Ant to work with Microsoft Excel sheets (.xls) using Java? Any IDE or is the command line enough?
I have downloaded Apache POI, …
0
votes
1answer
26 views
Will apache poi work with J2Me?
I wish to use apache poi libraries for accessing powerpoint files in a blackberry application I am developing. Adding the jar's as external libraries causes preverification errors. (compiles …
0
votes
1answer
56 views
Hyperlinks in Excel generated in java
I've to create hyperlinks in Excel as above. On click of the hyperlink, the data should be populated somewhere down the excel.
Am using Apache POI to generate the excel. is it possible with POI or …
0
votes
1answer
44 views
Display prcentage values in Excel using POI API.
i need to show a value in excel cell like in 12.3% in the cell.but it should be able
convert into a number.by default it is considering as a text.But i want it as a number.
if any body overcome this …
0
votes
2answers
120 views
How to extract plain text from a DOCX file using the new OOXML support in Apache POI 3.5?
On September 28, 2009 the Apache POI project released version 3.5 which officially supports the OOXML formats introduced in Office 2007, like DOCX and XLSX.
Please provide a code sample for …
0
votes
4answers
243 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 …
0
votes
1answer
223 views
Apache POI HWPF, replacing text in .doc documents fails
I try to write down the result of the POI unit test at: code here, by adding the line
daDoc.write(new FileOutputStream("C:\\wordtest.doc"));
to the end of the method testRangeReplacementAll. The …
