0
votes
1answer
29 views

HTML Formatted Cell value from Excel using Apache POI

I am using apache POI to read an excel document. To say the least, it is able to serve my purpose as of now. But one thing where I am getting struck is extracting the value of cell as HTML. I have ...
0
votes
1answer
16 views

Apache POI- SXSSFWorkbook - Block a row from flushing

I have a scenario where i am creating a very large xlsx files using SXSSF workbook(around 1-2 million). While writing to the sheet , i have to dynamically populate some values say Headers only in ...
0
votes
0answers
15 views

Is it possible to merge two xlsx files via apache poi

I am able to write a xlsx file via apache poi, but don't know how to merge.... two files via poi.Please provide necessary steps to be taken for merging.. File fileCommon = new File(fileName); ...
0
votes
0answers
25 views

How to use DataFormatter in EventBasedExcelExtractor

I am trying to use DataFormatter with EventBasedExcelExtractor. The problem is that text from numrec.getValue() is not formatted as they are in the excel files. FormatTrackingHSSFListener is not good ...
0
votes
1answer
29 views

Apache POI - Generating conditional formatting that refers to other cells

I'm generating an XSSF spreadsheet in Java using Apache POI. What I'm trying to do is generate a conditional formatting formula that's similar to "if the value in cell $A2="X", turn $C2 green", and ...
0
votes
1answer
38 views

Inserting Long type value in to Excel using apachePOI

I have an excel sheet created using Java program. I need to insert a Long type value( like 361272004652) in to the excel sheet. It is inserting properly. But the problem is when I opened the Excel ...
1
vote
3answers
37 views

Java Excel I/0 issue

To work with my project I needed to learn about the POI Api from apache. So I decided to create a small program that creates a spreadsheet and fills its cells with some values . The problem is it ...
0
votes
2answers
44 views

Parse Excel data in Java effectivley

I'm supposed to realize a Java application that should retrieve data out of an excel spreadsheet and link it to some objects I've already created in order to apply some calculations on them, then ...
0
votes
3answers
60 views

Read Excel Numeric cell values as they are in Java

When I am reading excel numeric cell values, i am getting the output with decimals. eg: 79 is reading as 79.0, 0.00 reading as 0.0. The code for my application I have written is: int type = ...
-1
votes
1answer
46 views

Apache poi - customize text cell

how can I set in apache poi library customize text to cell? E.g.: I have got one cell, but text it's longest than cell, so, I like format text as in excel - adjust the text size cell. Thank you.
0
votes
2answers
49 views

XLS - Conditional Formatting - Java POI Example

:) Finally after the research I found the solution to my problem, which is not yet satisfied I would like to use conditional formatting to show a line with a yellow color if column B and C to the ...
0
votes
1answer
43 views

Conditional format on Excel file

Is that possible to do some conditional format on Excel file with JXL or Apache POI or something else? API java Like Macro VBA for example? ' Mise en forme couleur pour différence For i = 3 To fin ...
0
votes
1answer
44 views

How to group the values which are in excel to a HashMap

i have the following excel: Method Name Status Code getLoggedinUserDetails 400 createRequisition 400 excelMDM 400 and i am able to print the values as they are in excel using ...
0
votes
0answers
54 views

POI Apache - Excel - number of page

I'm using POI Apache for create *.xls. I need write to file about few pages and when I begin write new page, I need write something, but it isn't directly top. It's few rows. How can I do it? It is ...
-3
votes
0answers
15 views

How to evaluate Correl function using Apache POI [closed]

I need to evaluate a cell which contains Correl function. Is there a way to achieve it using Apache POI? I have .xlsx spreadsheets.
0
votes
1answer
48 views

Spring MVC / AbstractExcelView / Apache POI : File Error

I'm using Apache POI and extending Springs AbstractExcelView to create Excel sheets. public class ExcelSpreadsheetView extends AbstractExcelView { protected void buildExcelDocument(Map<String, ...
1
vote
1answer
42 views

How can I open an xls file, save it, and then close it all in java?

How can I open an xls file, save it, and then close it all in java? I currently have a workaround where I make java write a vbs script that does the same thing Set excel = ...
0
votes
0answers
27 views

how to draw line using setShapeType in apache poi XSSF usermodel

I'm updating the code to use 3.8 poi, so I'm changing the code from HSSF to XSSF. I have setShapeType to OBJECT_TYPE_LINE in HSSF, how to change the setShapeType for XSSF usermodel. I need to draw a ...
0
votes
1answer
49 views

Doing “Save as” of an XML Spreadsheet document into an Excel Document in Java

How do I convert an "XML Spreadsheet" document into Excel using Java code? I can do this manually by opening this document (which windows recognize that it can be opened in Excel, so it opened it in ...
-1
votes
0answers
23 views

I need help copying colors from a cell in a workbook to another cell in another workbook,HSSF POI [duplicate]

I tried many methods but they are not working and i've been trying for days,so i'm not being lazy or anything.I'm using java btw
-2
votes
1answer
35 views

Apache-POI3.9 + creating Excel sheet with text validations [closed]

I want to create Excel sheet using POI whose column A will contains only text(String) values . How do I do that ?
0
votes
0answers
38 views

Apache POI Excel getDateCellValue() wrong year

I am using Apache POI to read several Excel files and convert them to an Oracle DB. My code looks roughly like this: wb = new HSSFWorkbook( new FileInputStream( FORECAST_HEADER_EXCEL_FILE ) ); Sheet ...
0
votes
0answers
51 views

POI,Sorting excel file not working

I created a method swapRows(int row1,int row2,HSSFSheet sheet) and it is working. Now I created a method sort() that sorts the excel sheet by Name (cell 0), if they are equal it checks for the second ...
0
votes
0answers
23 views

HSSF POI,method sorting not working [duplicate]

I created a method swapRows(int row1,int row2,HSSFSheet sheet) and it is working Now I created a method sort that sorts the excel sheet by Name(cell 0),if they are equal it check for the second cell ...
1
vote
0answers
66 views

Reading different formats in the Excel (XLS) data from Apache POI 3.2

I am trying to read an XLS (2007 format) file using JDK 1.4 and Apache POI 3.2 . I have few rows in the file already which are TEXT formatted (RIght click-> Format cells -> Text). I added few more ...
1
vote
1answer
57 views

Apache POI modify chart without using named ranges

I need to present data from my db into an .xls spreadsheet. I can read/write to the xls file without any issue, but obviously I cannot create the chart from scratch. I read every documentation I ...
0
votes
0answers
19 views

POI seems to change default cellstyle on certain columns

I have encountered a somewhat disturbing behaviour with POI: I'm trying to lock certain cells. Let's say I have a sheet with 5 columns. The first two columns (A,B) contain IDs and are always locked. ...
0
votes
1answer
87 views

How to get row count in an Excel file using POI library?

Guys I'm currently using the POI 3.9 library to work with excel files. I know of the getLastRowNum() function, which returns a number of rows in an Excel file. The only problem is getLastRowNum() ...
0
votes
0answers
48 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
0answers
59 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
57 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
50 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
66 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

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
76 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
1answer
81 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
1answer
179 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 ...
-2
votes
1answer
248 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
306 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
198 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
42 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 ...
2
votes
1answer
129 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
72 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
0answers
101 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
466 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 ...
0
votes
1answer
67 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
62 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 ...
5
votes
1answer
235 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
40 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
105 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 ...

1 2 3 4 5 10