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
1answer
14 views

is it possible to insert a cloned sheet to a different workbook? APACHE POI

i'm not sure if my question is a bit silly but once I clone a sheet from an existing workbook, how do I "IMPORT" it to another workbook? or is that the way is it supposed to work? API said that it ...
0
votes
0answers
31 views

How can I set the position for images with apache poi XWPF

I started to work with Apache POI's libraries this week, and I want to test them, so everything is alright but I can't achieve set the position for one picture. Now I have this code: ...
0
votes
0answers
16 views

poi with an image: can't open the result file

I write an image to excel file but it can't be opened ... in the log, it seems ok (writeLogo.OK is displayed) thanks a lot best regards try { InputStream inputStream = new ...
0
votes
1answer
73 views

How to write multiple sheets in same file using apache poi

I have 2 workbooks that i want to write in same excel file, following is my code public void csvWriteToFile(HSSFWorkbook workbook1,HSSFWorkbook workbook2,String fileName){ try { ...
0
votes
2answers
85 views

How to do cell iteration of excel in java

I am having an excel with 2 rows and 5 columns. Now I entered code manually to take values from 1st row. How can I iterate the process? Below is the code for 1st row in excel. From the 2nd row on, I ...
0
votes
0answers
57 views

Is it better to use StAX over SAX to parse large excel files with Apache POI?

I've implemented something based on this java source code to process XLSX files with the Apache POI library. The program parses using SAX. I was wondering if there are any performance benefits when ...
0
votes
1answer
45 views

Setup POI in Eclipse EE for my servlet (on Mac)

I have downloaded Apache POI which include several .jar files. I want to use it for my servlet (developing with Eclipse EE version). I have added all .jar files in my "lib" folder and added them to ...
0
votes
1answer
44 views

how to iterate correct over rows and cells in xlsx

i'm not sure, maybe we had an similar request here and i'm to stupid to find the right request. My English is not so good, i hope i can explain what i need. I have the Task, to iterate through an ...
0
votes
0answers
81 views

Apache POI-HSSF Distorts Image Size when Adding Picture into Excel Cell

I am adding a picture into a cell using Apache POI-HSSF. The image is 120x100 but no matter what I do and how I resize it, the Excel spreadsheet always shows it spanning multiple rows and distorts it ...
0
votes
2answers
60 views

insert new row after each 10 items in apache poi

I have a List<String> that has few elements and I want to write these elements into an Excel sheet using Apache POI. Also I want to put the data into separate rows after each 10 items. For ...
0
votes
2answers
61 views

What is the difference between getRichStringCellValue() and getStringCellValue() methods of POI HSSFCell class?

I am trying to read data stored in a Excel sheet using Java POI. I am confused with these two methods because both methods reutrn string value stored in the cell. Could anyone explain the difference ...
0
votes
0answers
54 views

Java Excel - creating hierarchy filter

I have hierarchical data (for examples in a column i can have YEAR-MONTH-DAY or NATION-TEAM-PLAYER) into different columns. I would like to create an excel document from java (usign apache poi, jexcel ...
1
vote
1answer
71 views

Cell won't get color with POI

I tried to make a programm which reads in an image. And after draw's out the image in MS excel but every cell is a singel pixel like here .I think i am quiet far but i can't see the problem it won't ...
0
votes
1answer
38 views

Can't add two merge regions in POI?

I'm trying to add two merge regions in one row like this: // Cell Range Address CellRangeAddress cellRangeAddress_1 = new CellRangeAddress(0, 0, 3, 6); CellRangeAddress cellRangeAddress_2 = new ...
0
votes
1answer
59 views

Getting image size from XWPF document (Apache POI)

anyone had experience parsing docx file with Apache poi? while extracting image from CharacterRun using paragraph.getRun().getEmbeddedPictures(); I was not able to find a way to get scaling or/and ...
0
votes
1answer
27 views

How can I get the location of picture in a xlsx file by using Apache POI

I can get the picture file, but I don't konw how to get the location of picture. I can't find the correct method in POI. InputStream is= new FileInputStream("test.xlsx"); XSSFWorkbook ...
0
votes
1answer
41 views

Downloading Certain Excel File and Interpreting Some of Its Values

So I'm working on getting a certain excel file, mostly a file that shows the assignments and grades that the students got on the assignments, and doing something with the values. Now, I want to get ...
2
votes
1answer
81 views

Why won't Apache POI OPCPackage close() method save/write contents to open writable file?

Using the following code, cell value changes made to my Excel Spreadsheet are not saved: OPCPackage pkg = OPCPackage.open(inputFile); XSSFWorkbook wb = new XSSFWorkbook(pkg); ModifyWorkbook(); ...
0
votes
0answers
21 views

get file name without the extension in java [duplicate]

i made a program in java that it takes an excel file and store its data in a database. When i state where the file is its like this: String filename = "test5.xls"; String path = ...
0
votes
0answers
36 views

Creating cell comments in apache poi (for .xlsx files) with show comments disabled

I am trying to create cells comments using apache poi. I am able to create the comments, but by default they are always displayed in excel. I have to manual right click on the cell and un-tick show ...
0
votes
0answers
31 views

Creating drop down validations using apache poi to allow only limited set of inputs on that cell

I am trying to creat drop down in excel using apache poi. I am able to generate the drop down containing inputs provided by me. But it is accepting other inputs too by the user. In excel, when I ...
2
votes
1answer
44 views

How to check if date uses 1904 windowing with Apache POI XSSF eventmodel

I am writing a program that imports xlsx files with Apache POI eventmodel (SAX/XSSF). I am almost done, but I can't get the correct dates. I am parsing a cell with date value <c r="D1" s="1"> ...
0
votes
0answers
62 views

Coldfusion,java and apache poi [closed]

I am trying to call compiled java class that use poi to save excel file but I got the following message in the log of ColdFusion server Could not initialize class ...
0
votes
1answer
86 views

How do I iterate through the properties of a bean to populate cells of spreadsheet

I'm using POI to generate the Excel spreadsheet from my managed bean. Here's my Student Bean: package edu.phc.students.model; public class Student { private String m_firstName; private String ...
0
votes
0answers
43 views

Parse intersecting name ranges with POI

I have problems to parse formulas which contain intersecting name ranges with apache-poi. For example if I try to parse a formula like "=SUM((Total_Cost!Jan):(Total_Cost!Apr_))" where Total_Cost, Jan ...
0
votes
1answer
57 views

how to set linespacing using docx4j api?

Blockquote Hi, I am trying to convert doc to docx using docx4j api.I need to set line spacing as required. Blockquote
0
votes
1answer
216 views

From JTable to Excel

I am trying to export my JTable to an excel file. For this end am using apache POI-SS and apache POI-XSSF. First, I parse my xml file with sax parser and trnsform it to JTable and second by clicking ...
0
votes
1answer
185 views

Speed up database import from an excel file via reading in by Apache POI and persisting via Hibernate and JPA

i am trying to speed up my database import from an excel file via reading in by Apache POI and persisting via Hibernate and JPA (This is a specific requirement, Using a JYA datasource) in JBOSS 7.1. ...
0
votes
0answers
102 views

How to get the row count in a excel sheet with Apache POI with Event API

I am using Apache POI Event API to read large excel worksheets. The whole operation is lenghy, becouse I have to put all the data to database. I would like to display progress of import, ie ...
0
votes
0answers
108 views

Reading excel 2003 files with apache POI - FileNotFound

I am writing some code to import Excel files to database. The files could be big (thousands of rows), so I am using the Event API. POI version is 3.9 I am opening the file like this: FileInputStream ...
-2
votes
1answer
319 views

How to generate an Excel report from MySQL database using Java [closed]

I have this code for generating Excel report from MySQL database but here the path for saving the the excelsheet generated is predefined.I want to have an option to rename the generated file and save ...
0
votes
2answers
396 views

Reading and writing from xls and xlsx excel file in java

I am writing a program which needs to read and write from excel files, irrespective of the format(xls or xlsx). I am aware of the Apache POI, but it seems it has different classes to handle xls ...
1
vote
1answer
225 views

Getting Excel cell background color using POI in Java doesn´t match

I am converting an Excel table to HTML. I am using POI in Java to get the color of the cell in an xls workbook. The problem is that the colors don´t match: In Excel I have RGB values of 242, 220, and ...
0
votes
1answer
39 views

how to display up to 1 decimal place

I am using jxl-2.6.3.jar. I want to display bigdecimals, which are up to 1 decimal point. If i write like below, then 1.2 is displayed as "1.2" , but 1.0 appears as "1." . I need 0 as well in case ...
0
votes
0answers
133 views

How to merge cells ( or apply colspan) using XWPFTable in POI in Java?

Creating a table in poi was quite easy but it has very limited tutorials and i cannot find one that can create a simple merged cell in a table in generating a docx file.
1
vote
2answers
76 views

Reading Apache POI file and persisting via JPA but persistance of entities does not happen until the end of method

Hi im trying to keep track of my Apache POI reading an excel file an importing to the database. I am persisting the imports progress (% Progress,time etc) to a separate table in the database so i can ...
0
votes
1answer
47 views

Exporting Variable Number of columns from query into excel

I am trying to write the output of a complex query into Excel. For this I am using JDBC and created a function of return type 'ResultSet' through which I'll be getting the output of the Query. To ...
0
votes
0answers
28 views

Create TextBox with two different formatting

I'm trying to create a org.apache.poi.hslf.model.TextBox that has two different types of formattings. I want some of the text to be size 14 and bold, and the rest to be size 10 and not bold. I've ...
0
votes
0answers
56 views

Adding Link file using APACHE POI XSSF is not accepting directory address and showing java.net.URISyntaxException

I am trying to hyperlink a png file in a cell content of any xlsx file. Following is the part of code and it is showing java.net.URISyntaxException exception (seems because of slash used in the ...
2
votes
1answer
135 views

How fetch cell value using iText fetch

Here is an Emp.xls Table :- +-------+-------------+---------------+--------+ | EmpId | Name | Designation | Salary| +-------+-------------+---------------+--------+ | 1.0 | Akon Roy | ...
0
votes
2answers
81 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
539 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
120 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
21 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
82 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
132 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
59 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
529 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
79 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
127 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" ...

1 2 3 4 5 30