jXLS is a Java library for writing Excel files using XLS templates and reading data from Excel into Java objects using XML configuration.

learn more… | top users | synonyms

0
votes
1answer
6 views

Jxls - how to elimate “#value” in excel spreadsheet?

I'm using the POI-based Jxls library to generate spreadsheets which contain macros which refer to other worksheets. I'm having a problem when the formula refers to an empty variable, and showing ...
0
votes
0answers
31 views

jxls howto validate data and cell content in excel with jxls

i am using http://jxls.sourceforge.net/index.html for reading an xls-template und filling it with content. (reading an Excel'97 file) but there is one i havent fount any information about it. i ...
1
vote
0answers
100 views

how to merge cells dynamically in JXLS API in transformed template

I am using Jxls API i can now create , pass data lists to the template which creates excel output sheet as desired but now i have to merge the column cells which carry same value this is my for ...
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 ...
0
votes
2answers
198 views

How to append data to a .xls file through Selenium WebDriver

I want to append data to a TestData.xls. TestData.xls already contains data for my scripts. I am reading this data in program, processing it and result-Pass/Fail is decided on this processing. I want ...
2
votes
2answers
112 views

Formulas won't calculate automatically

I have a big sheet with a lot of formulas that have a dependency hierarchy between them. It starts with a cell with a date value. Then, cell x:y (and others), has formula depending on this date. Then ...
2
votes
1answer
100 views

Jxls output excel file is not in same format as input template file

hi , i am using jxls for excel sheet generation , my problem is in o/p sheet i am getting extra rows , and some border styles also. for further reference i added two images here
0
votes
1answer
99 views

jXLS created Document: No calculating from the start

i created a tool, that analyzes a HTML Document and write the content of some tables in a Excel File. As you can see here it is very easy with jXLS to create a ExcelFile with a Template: ...
0
votes
0answers
119 views

jxls #VALUE! error with VLOOKUP

I am getting #VALUE! error for a cell containing this formula in Excel: VLOOKUP(O14;Sheet2.A1:AL1000;HLOOKUP(K14;Sheet2.A2:AL3;2;0);1) I am using an Excel sheet as a template and I'm generating my ...
0
votes
1answer
71 views

Access java.sql.connection from ActiveRecord JRuby?

I am using Jruby and Rails 3 with jxls, a Java library to generate reports in Excel. The jxls API has a ReportManagerImpl which takes a java.sql.Connection in its constructor. ReportManager ...
0
votes
1answer
267 views

Importing Excel With JXLS: is it possible to specify sheet by order rather than name?

I'm using the JXLS XLSReader to read in Microsoft Excel files. This is a copy of my configuration file: <?xml version="1.0" encoding="ISO-8859-1"?> <workbook> <worksheet ...
0
votes
0answers
70 views

Exception occuring during reading xml file i wrote code as [closed]

XLSReader mainReader = ReaderBuilder.buildFromXML(inputXML); Exception in thread "main" java.io.IOException: Stream closed
1
vote
1answer
351 views

jxls - create Excel file with dynamic images

I want to create an Excel file with a dynamic logo and a list of dynamic images. The creation of the text part in the Excel file works great with jxls. But I'm not able to insert one image in each ...
1
vote
0answers
172 views

Play Framework 1.2.5 Excel Module Can't Parse Cell tag jx:forEach

Hi the following is my java method public static void csvReport(String date) throws Exception { request.format = "xlsx"; renderArgs.put(RenderExcel.RA_ASYNC, true); ...
0
votes
0answers
78 views

EmptyStackException while invoking workbook.write() on an excel 97 file

I'm stuck on a problem in java when I want to write to cells in an Excel file and a EmptyStackException is thrown when I invoke the method write() on a WritableWorkbook object. The following is the ...
2
votes
2answers
411 views

jxls file generation hangs for ever when rows > 10,000

I have a excel report that gets generated. Most of the time, it works fine when rows are up to about 2,000. This morning, I tried to generate a report that has 11,000 rows and could not figure out ...
0
votes
0answers
99 views

Common ground between Apache Velocity and JXLS

I have a system that was until this point in time generating reports using Apache Velocity and ZPL. We do this by populating our application's data model into an instance of Apache Velocity's ...
1
vote
1answer
400 views

How to sum columns of a dynamically created range of cells in Excel

There are a number of rows created using a jxls forEach loop in an Excel spreadsheet. Within each of these rows, there are a set of columns that are also dynamically created with a forEach. So ...
2
votes
1answer
298 views

Hyperlink to download excel using jxls

First the context: I am using jxls to export to an excel using an excel template & its working fine.I am saving to a folder under webcontent WebContent\reports\report_output.xls What ...
1
vote
1answer
2k views

Read and write to the same Excel file

package jexcel.jxl.nimit; import java.io.File; import java.io.IOException; import jxl.Cell; import jxl.CellType; import jxl.LabelCell; import jxl.Sheet; import jxl.Workbook; import ...
2
votes
1answer
3k views

Writing to an Existing Excel File

package jexcel.jxl.nimit; import java.awt.Label; import java.io.File; import java.io.IOException; import jxl.Cell; import jxl.CellType; import jxl.LabelCell; import jxl.NumberCell; ...
1
vote
1answer
1k views

Reading content from an Excel file

package jexcel.jxl.nimit; import java.io.*; import jxl.Cell; import jxl.Sheet; import jxl.Workbook; import jxl.read.biff.BiffException; import jxl.read.biff.File; public class ...
0
votes
0answers
187 views

Write collection values from jxls output into one single cell

I'd like to use jxls to write the String values of an ArrayList into a single cell separated by line breaks but whatever combination of the forEach tag or the automatic collection output i used jxls ...
0
votes
2answers
1k views

How to write a jXLS template and where to write it

I'm trying to use jXLS to export data from a list to an Excel sheet. I need to create an Excel template using jXLS and print out a list of data using that template. I have a Bean class called ...