Apache POI is a Java library for reading and writing various Microsoft file formats, especially Office related ones, based on OLE2 and OOXML, such as XLS and DOCX.

learn more… | top users | synonyms (1)

0
votes
2answers
97 views

reading excel file and saving to database?

I am reading an Excel file and saving it to database. I am iterating each row and cell and saving it to vector object, and then using loops, saving it to database. While I am saving it database, I am ...
0
votes
1answer
736 views

store data from excel in list after reading with java

i am using APACHE POI to read the data from excel files. I would like to store them in lists (like list in c) the result because afterwards I will try to store them in mysql database calling only ...
0
votes
0answers
177 views

android using apache poi to create .xls file

i'm using Apache POI in android to create an .xls file, using a linux pc(incase that matters). I am following this tutorial ...
0
votes
0answers
26 views

How to add new line of text to existing XWPFFooter

With Apache POI API, how would I add a new line to an the docx's existing footer?
0
votes
1answer
96 views

installing Apache POI for android using a linux pc

I'm developing apps for android, using eclipse, on a linux(ubuntu) pc. I cannot find any information on how to install Apache POI. could someone please explain step by step how to install Apache POI ...
0
votes
0answers
189 views

Reading Outlook .msg file

I am trying to write code using Apache POI package to read Outlook .msg mail files I am trying to get messageIds for all .msg files in a directory. However for some .msg files these messageId is ...
0
votes
0answers
76 views

Set color text in doc file using apache poi

I used this code snippet to set color text in MS Word file CharacterRun r = paragraph.getCharacterRun(2).insertBefore("x"); r = r.insertBefore("y"); r.setColor(6); r.insertBefore("z); I want to set ...
0
votes
0answers
696 views

DataProvider in TestNG to pass data from Excel using Java WebDriver with Apache POI

I have a login page which contains username and password .I have a class XcelParserTestNGLogin to create,update and to load from Excel sheet method.And i have another class Login which is a TestNG ...
2
votes
2answers
86 views

What is the best approach to passing third party objects into constructor

I have a class that takes in an argument and then popluate a private hashmap from the argument. Public class Table { private Map<String, String> map = new HashMap<String, String>(); ...
1
vote
0answers
148 views

Apache POI java.lang.NoClassDefFoundError: Jboss 7.1.1

I am trying to deploy a jar application in Jboss Server 7.1.1 It is configured via maven and i have added all the dependencies in pom.xml. <project xmlns="http://maven.apache.org/POM/4.0.0" ...
0
votes
1answer
91 views

XLConnect loadWorkbook error - POIXMLException (Java)

I'm trying to load a hefty Excel workbook (.xlsm format, ~30 mb) that has a large number of array calcs. > wb1 <- loadWorkbook("Mar_SP_20130227_V6.1.xlsm") Error: POIXMLException (Java): ...
0
votes
1answer
89 views

jxls can't read cell on spreadsheet email hyperlink

Hi I am using jxls for reading data from excel file to java bean. I got an issue while mapping. There is a column F2 called email in the spreadsheet which is a email hyperlink. When I try to run I get ...
0
votes
0answers
111 views

Java (Apache POI) How to stretch XWPFTable row across whole page

I have a simple XWPFTable I made using Apache POI for docx, but if the text of the cell is short the cell/row resizes to fit around the text. How do I set it so the table/rows stay stretched from left ...
0
votes
1answer
68 views

How to Add Validations(Numeric,Date) to a Particular Cell using POI

How to add a Integer Validation, Date Validation to a Particular Cell Using POI. and validate after the user enters data, show an error message if data is wrong thanks in advance
5
votes
1answer
285 views

Read XLS with Protected Book and Sheet via HSSF.EventUserModel

END GOAL: Efficiently (in one pass) read all CellRecords on a huge (30,000+ row), protected Worksheet. Problem: Using the HSSF.EventUserModel, how can I read all Records (including CellRecords) for ...
0
votes
1answer
60 views

Apache POI setPrintArea to A4 page size

I'm working with the apache POI API to generate .xls files, and i want to set the printArea of mi file. I know there is a funcion called setPrintArea() but this one receive as parameters start and end ...
0
votes
0answers
74 views

How to get the workbook ref in Apache POI formula (e.g. formula [CELL])?

I want to implement a Excel formula that is CELL function use the Apache POI. It will return the Current Excel workbook filename when the cell eval expression is =CELL("filename"). I could find the ...
0
votes
0answers
158 views

Can't get Apache POI autosizeColumn() to work right

Ok so I know you have to add the autoSizeColumns() method after you enter all your data into the sheet and workbook. And that is what I am doing but it is only resizing to the width of the last Cell ...
0
votes
1answer
60 views

Can we use printwriter with Apache poi worksheet

I am creating a workbook and trying to download the same. The issue I am facing I am when I use the workbook.write(outputstream), it seems both outputstream and printwriter will not work together and ...
0
votes
1answer
355 views

How to check if an excel cell is empty using POi.?

I am taking input from an excel sheet using Poi.jar and wanted to know how to check if a cell is empty or not. Right now I m using the below code. cell = myRow.getCell(3); if (cell != ...
0
votes
2answers
579 views

org/dom4j/DocumentException

Good morning every body , I have java code that alllows me to create an excel file from xml flie.. But it can not create correctly the file, i have this exception that I do not inderstand its ...
0
votes
0answers
87 views

Remove Pivot table using POI 3.9

I am using one excel sheet in xlsx format. this contains a pivot table which has input data from some other data row/column source and generates a result set. I want to remove this pivot table once ...
2
votes
2answers
439 views

read excel file using Apache POI

I have created this code to read the contents of excel files using Apache POI. I am using eclipse as editor but when i ran the code i have problem in the line that I have in bold. What's the problem? ...
0
votes
0answers
57 views

how to make excel document writable?

I have created an excel document in Java application using poi library. and flush the corresponding worksheet into servletoutput stream. I am getting the xl document in ui with readonly format. How ...
2
votes
1answer
56 views

How to read result of HYPERLINK() function in POI

Apache Poi can evaluate and return results of functions in formulas. However for the special function HYPERLINK(), it only returns the "display value", not the actual calculated hyperlink value. I ...
0
votes
0answers
86 views

How to Determine Merged Cells in a Certain Row

Here's what I know so far: You use the method sheet.getNumMergedRegions() to get the number of merged regions in a particular sheet You loop through each count and use the method ...
3
votes
0answers
271 views

Create and Alter Excel tables using Apache POI

Is it possible to create and alter Excel Tables using apache POI? There is class that represents an Excel table (http://poi.apache.org/apidocs/org/apache/poi/xssf/usermodel/XSSFTable.html) and there ...
0
votes
2answers
737 views

Apache POI autoSizeColumn() not working right

I am creating a program that writes information to an excel file using the apache poi. After I enter all of my data into the file I call the autoSizeColumn method on every column of the file. But it ...
0
votes
1answer
131 views

How to edit existing word file using POI API

Using: XWPFDocument document = new XWPFDocument(); How do I assign it so it doesn't overwrite the file if it already exists?
0
votes
2answers
795 views

How to change font color of particular cell apache poi 3.9

I can change foreground color with the following code in apache POI. Now I want to change font color of a single cell. CellStyle style = wb.createCellStyle(); ...
0
votes
0answers
167 views

Java Poi Word Change Margins

I am trying to change the margins of a Word document using Apache Poi. I have used this a link website as kind of a guide. right now I am just trying to open a HWPFDocument. I am getting the following ...
1
vote
0answers
177 views

Improve the speed of reading and persisting Apache POI excel file

I have an excel file i am currently able to import into a mySQL database but i would like to increase the speed of import somewhat. My set up for reading the excel files (approx 40,000 rows in each ...
0
votes
1answer
224 views

Reading time values from spreadsheet using poi api

I am trying to read a date column and a time column from a spreadsheet. I am able to retireve the date column from the sheet, but not the time column. For example, my sheet will have rows of the ...
0
votes
0answers
85 views

How to highlight a substring in a paragraph of docx document using apache poi?

I'm developing an web application which allows to compare 2 docx documents. And I want to highlight similar locations in two documents. I used apache poi to process docx files. Furthermore to ...
0
votes
0answers
70 views

The PoiReadExcelFile class will read in the 'poi-test.xls' file into an HSSFWorkbook object

I've created this code and The PoiReadExcelFile class will read in the 'poi-test.xls' file into an HSSFWorkbook object. The 'POI Worksheet' will then be read into an HSSFWorksheet object, and then the ...
-1
votes
1answer
889 views

java program for read an excel file using Apache POI and eclipse as editor

I have created this code to read an excel file which contain boolean, string and numeric values using APACHE POI. import java.io.*; import java.util.ArrayList; import java.util.Iterator; import ...
0
votes
3answers
102 views

workbook.createSheet() method not recognized in IDE using apache POI

I am trying to learn apache poi but the method workbook.createSheet() seems to be not recognized by the IDE. reviewing the suggestions that are there, many methods are available for the workbook ...
1
vote
0answers
83 views

How can I remove hyperlink in poi 3.8?

I have some problem with reading an excel file contains hyperlink text in poi. Data is like that(excel file): |1| type | category | job_type | position | name | email |2| Test | developer | ...
0
votes
0answers
151 views

Convert word and excel to html on android

I would like to convert word and excel documents to html to show them in the browser in my android app. I found apache poi library, but it converts practically only text without object like forms, ...
0
votes
1answer
128 views

how to call a java class method to return an excel file in ofbiz?

I am planning to do this implementation from a widget. User would input an ID to the controller, then to the java class which would generate a report and send an excel file to the user. But ofbiz ...
1
vote
3answers
748 views

how to convert doc,docx files to pdf in java programatically

I am able to generate pdf from docx file using docx4j.But i need to convert doc file to pdf including images and tables. Is there any way to convert doc to docx in java. or (doc to pdf)?
1
vote
1answer
94 views

Persisting date vales into mySql database via Apache POI

I am using Apache POI to read in an excel dataset and JPA to persist into the database. This is working fine except for the fact i need to get a set of date/time values correctly into the database ...
1
vote
2answers
51 views

Adding custom shapes to JTextpane and saved to new Word document

If I load a Word document into a JTextPane, is there a way I could drop a custom shape in it, then save it as a new Word document? The results I'm looking for are just like dropping a shape anywhere ...
1
vote
1answer
136 views

How can i extract Arabic words from .doc and .docx files using Apache POI in java

I'm actually developing an application that will take a .doc or .docx files as input and extract its words to Database table. I tried Apache POI for this purpose and I successfully do this but with ...
0
votes
0answers
158 views

How to extract text from .doc document using apache poi?

I used some code snippets below for extracting text from .doc file HWPFDocument document = new HWPFDocument(new FileInputStream(inputFile)); Range range = document.getRange(); int len = ...
0
votes
0answers
288 views

opening excel ooxml 2007 xlsx document returns nullPointer exception

How do I open a 2007 xlsx ooxml file with Apache POI? I've added everything to my class path but keep getting this java.lang.NullPointerException error: "C:\Program Files\Java\jdk1.7.0_13\bin\java" ...
0
votes
0answers
117 views

Apache POI - Performance with Conditional Formatting

I'm generating with Java, an excel file (. Xls) using the POI library (http://poi.apache.org/spreadsheet/index.html) The file generation is already implemented and working. Several cells have ...
0
votes
1answer
78 views

Cyrillic characters in Apache POI excel file hyperlink address

I use Scala and Apache POI (with folone/poi-scala). I want to create a hyperlink to the local file in the cell. The path of the file contains cyrillic characters. And in Excel i can't open this file, ...
0
votes
1answer
124 views

Apache POI - get number as integer

Numbers all come back from Apache POI cell values as Double. When I do getCell(...).toString(), a number that appeared as "123" in Excel will convert to "123.0". How can I tell that the number ...
0
votes
2answers
989 views

can't read xlsx file using apache poi

I've been searching this issue for hours but the solutions given didn't work. I'm working in Intellij IDEA 12.0.4 trying to read a Microsoft 2007 xlsx file. The error I receive is: Exception in ...

1 3 4 5 6 7 32