Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
14k views

Exception while compiling: wrong version 50.0, should be 49.0

I am working an application with JXL API and when i tried compiling using eclipse IDE, it's working fine and the same is not compiling when i am trying to compile in Command prompt and showing the ...
7
votes
1answer
385 views

JXL solve #VALUE problem

I want to use AVERAGE function, but when I have a reference cell which happens to be a label I get #VALUE as the output. I have attached the sample piece of code for what I am trying to do: String ...
4
votes
1answer
1k views

JXL and Apache POI parsing excel with attached image objects

I have tried using JXL and Apache POI to load data from an excel file, up until now the JXL mechanism has worked fine. Even if I embed an images in the file. I received a file from a source which ...
3
votes
4answers
6k views

JXL Cell Formating

How to autofit content in cell using jxl api? Please help with example.
2
votes
1answer
56 views

writing content in an Excel sheet

I am developing an application in android and I have a requirement to read and write from an excel file stored in sdcard.I am using jxl library for this purpose. But I am getting some errors with file ...
2
votes
2answers
393 views

Java: byte[] Array to Excel to BLOB

i have an byte[] array that needs to be converted into an valid excel spreadsheet. After converting the byte array, the excel spreadsheet must be chached into the database preferably as BLOB. ...
2
votes
1answer
1k views

Modifying existing excel using jxl

I m not able to edit the existing excel sheet using jxl. It always creates a new one. Can anyone please help me out with it. Please give a small sample code.
2
votes
2answers
361 views

Doubt in jxl API?

While practicing the jxl API, i cant extract details from certain Excel sheet its throwing the following exception Unable to recognize OLE stream at ...
1
vote
0answers
16 views

Editing Excel sheet Using JXL library in android

I am using jxl library in my application to edit excel file stored in external storage of galaxy tab. But every time i try to write the excel it creates a copy of existing excel file.It is writing all ...
1
vote
2answers
44 views

jxl api: why writablesheet is an interface?

I'm quite new to Java and am stuck with this, please. Well I know that an interface 'provides' only abstract methods to be implemented by the concrete subclasses. Hope this is true (at least). So I ...
1
vote
0answers
41 views

JXL and Timezone writing an Excel

I try to create an Excel sheet with jxl. One of my field is a Date, and I live in GMT+1 TimeZone I use something like this to do it: WritableCellFormat EXCEL_DATE_FORMATTER = new ...
1
vote
1answer
127 views

Insert image to excel file using JXL without stretching it

I can insert image to my excel file using jxl usingsheet.addImage(WritableImage obj). My problem is that, it stretches based on the args of WritableImage. I'm wondering if there is a way so that the ...
1
vote
1answer
75 views

Column limit in jxlapi for producing excel files from Java

I want to produce an excel file using Java and jxlapi. But it is not allowing me to use more than 256 columns. I want to increase the column limit to at least 1000. I tried ApachePOI also but the ...
1
vote
1answer
34 views

Can I control the physical dimensions of a downloaded Excel spreadsheet?

My web app uses the Java Excel API 2.6.10 (http://jexcelapi.sourceforge.net/) to generate .xls spreadsheets dynamically. The user clicks a link and can either open or save the spreadsheet. Works fine. ...
1
vote
2answers
189 views

Image gets blurred when added to Excel through JXL

I use the JXL API to add an Image to an Excel file. Libraries used: jcommon (1.0.14) jfreechart (1.0.13) jxl (2.6.10) // chartImage is of type BufferedImage com.KeyPoint.PngEncoder encoder = new ...
1
vote
1answer
209 views

How to delete a row from an Existing Excel Sheet using JXL

I am not able to delete row of an existing excel sheet using JXL. Are there any other way to delete a row from and existing workbook?
1
vote
0answers
379 views

JXL Won't Allow Excel 2007 Extensions

I am using JXL to write an Excel report. Everything works fine if I use the .XLS extension. However, when I use the .XLSM extension, the report fails to load when I try to open it. I get the message ...
1
vote
2answers
175 views

JXL Named Area Formulas Display the Incorrect Value

I am using JXL to write an Excel report. I need to use named areas for the report, and have formulas based off of them. However, when the Excel file loads, the values displayed are incorrect. If I ...
1
vote
0answers
92 views

Creating a right-to-left Excel file with Java

I'm using jxl to create excel files. I need those files to be right to left, but I can't find out how to set it to be this way.
1
vote
1answer
630 views

Generating XLS file using JasperReports and JXL

I'm having a problem when trying to generate an XLS report using jasperReports and JXL: Here's the exception I'm getting every single time: Exception in thread "main" java.lang.NoSuchMethodError: ...
1
vote
1answer
656 views

BiffException while reading an excel sheet

i have a code to read from an excel sheet which is in old format(97-2003). I made some changes to data and ended up a 2007 format excel sheet. when i used this xlsx sheet instead of xls sheet, am ...
1
vote
1answer
668 views

how to write formatted numbers as numbers in JExcel (jxl)

I am using Java Spring and jxl to create Excel workbook on server side. The data that needs to be shown in Excel consists of already formatted numbers. I am using WritableCellFormat wcf = new ...
1
vote
1answer
1k views

Problem when using JXL Formula like SUM() AVG() STDEV() returns #VALUE! when it refers values from another sheet

I want to populate some values in a sheet and then use jxl Formula to get the values from that sheet and write it to another sheet... When I try to run this sample code String filename = ...
1
vote
1answer
560 views

How to sum non consecutive cells in jxls template

I am creating a xls report from template that uses data obtained from the Oracle database. I have a group and a subgroup. In a subgroup I create a table that displays the PREMIUM values and then the ...
1
vote
2answers
842 views

JExcel Warning: Could not add cell at A257 because it exceeds the maximum column limit'

I was asked to add an average amount of data from my web-app (basically a List from a SQL) into a downloadable Excel file, so I did a servlet to generate the Excel. Problem is that jxl API doesn’t ...
1
vote
1answer
557 views

Locking cells in a JXL-generated Excel document

Is there a way to lock certain cells from being edited by the user? I have tried the following: WritableCellFormat cf = new WritableCellFormat(); cf.setLocked(true); sheet.addCell(new Number(col, ...
1
vote
3answers
5k views

How Do I Create a New Excel File Using JXL?

I'm trying to create a new Excel file using jxl, but am having a hard time finding examples in their API documentation and online.
0
votes
1answer
36 views

Performance comparison between JXL and POI FOR excel file generations

Here is the code that generates .xls file using JXL: public void generateXls(String fileName, int sheets, int cols, int rows) { if (cols > 256) { throw new ...
0
votes
0answers
9 views

JXL ArrayIndexOutOfBounds Exception

I am trying to copy the width of my columns after copying cells from one spreadsheet to another. My code for copying column width looks like: for (int col = 0; col < numCols; col++) { CellView ...
0
votes
0answers
16 views

Get chart from excel and past it to ppt slide using java

I want to get an excel chart as image and past it to ppt slide, is there any way to do that using java. Any Open source java API thanks Bilal
0
votes
0answers
30 views

How to create excel sheet with right-to-left alignment using JXL

I wonder if i can set the direction of the excel sheet to right-to-left ... I am using JXL Api. thanks in advance
0
votes
0answers
66 views

unable to get correct date from excel using jxl api in java

I am using JXL to read an Excel file using Java. One of the columns on the file is in a Time Format. What is displayed in the Excel cell is (24-hr format): 0:01 When I highlight the cell, the value ...
0
votes
0answers
78 views

ArrayIndexOutOfBoundException with jxl api when trying to copy content from one sheet to another

Whenever I am trying to use template to create xls using jxl API running into weird ArrayIndexOutOfBoundException. Here is the snippet of code I am trying to use private static void ...
0
votes
1answer
87 views

Inserting image in to the excel cell using jxl api

I have to insert image in to the excel cell using jxl api i have tried with some sample code but it will insert at some coordinator, but i want in to at particular cell index or inside cell. here is ...
0
votes
1answer
89 views

Writing to Excel from Java takes long time for large number of records

I am using Jxl API to write to Excel,to export large number of records to excel. For my configuration number of records are around 40000. and for before writing these records i have to do lots of ...
0
votes
1answer
78 views

Java - Make an excel workbook 'read-only' using jxl API

The title says it all. How can I make my worksheet read-only? I'm using jxl to read and write excel files (.xls). I've been googling this the whole day. Replies are much appreciated.
0
votes
1answer
67 views

JXL library call

i am a barely new to the java (was always on c# before) and need to create a swing application where i need to read a data from xls file. So i use jXL. I have a class, which returns name of a first ...
0
votes
1answer
118 views

Data provider is not running in Selenium Grid

Can anyone please tell me that why the below error occurs: it occurs for all data provider methods. I use a static class for entire data providers and am using @Test(dataProvider = "Search", ...
0
votes
0answers
113 views

merging cells using jxl api in grails

I am trying to merge cells using jxl api, but I am stuck with the problem of passing "int" to to mergecells() call in WritableSheet object instance. What ever I am trying I am getting runtime ...
0
votes
0answers
83 views

Make JXL Cell “Text” instead of “General”

I am working with JXL and need to add "Text" cells onto the Excel sheet. I have the report set up: File myFile = new File("...\Test.xls"); //path omitted WritableWorkbook book = ...
0
votes
0answers
89 views

How to create a dropdown in excel using jxl API

How to create a dropdown in excel using jxl API in java. I have created a dropdown but it is allowing only 255 characters but i want to populate it with values from my database that are much larger ...
0
votes
0answers
195 views

JXL Attempt to modify a referenced format while setting background color

while: Colour selectedColour = Colour.WHITE; myWritableCellFormat.setBackground(selectedColour); I am getting an Exception: jxl.write.biff.JxlWriteException: Attempt to modify a referenced format ...
0
votes
1answer
308 views

How to delete a row from an excel using JXL

I am new to JXL and have worked on read and write of Excel files. But I could not find a function which would delete a row after I successfully read that row and move to the next. Code logic: ...
0
votes
0answers
394 views

JXL Number Format and Cell Type

I am using JXL to write an Excel file. The customer wants a certain column to display numbers with one decimal place. They also want the cell types to be "Number". When I use the following (test) ...
0
votes
0answers
409 views

Drop down in Excel 2010 using jxl Parser

I am jusing jxl API to read and write excel files using Java. I successfully created a drop down box using the jxl parser. The created excel format is .xls. When i opened with Excel 2007 the drop down ...
0
votes
0answers
79 views

How to protect adjacent cells in jxl template

I am using jxl to create an invoice in Excel. My line items start half way down the page, and over to the right is my company's address, which is there on the template and and not part of the jx ...
0
votes
1answer
202 views

JAVA/JXL- Different colors for the text in a cell

I would like to set part of the text in a cell to one color(font color) and other part to another color. Is this possible with jxl api ?, or it is a limitation? example: i have 'name*' in cell, now i ...
0
votes
0answers
155 views

How to copy the content value of a Formula Cell to another cell in jxl?

I am using jxl to copy and write an excel file from java. I have a few rows with some number values that I am finding it's SUM at the bottom. Then I need to copy that value to another cell. But ...
0
votes
0answers
402 views

Edit an Excel spreadsheet with Java & JXL API

I'm currently developing a Java app that's supposed to fill a preformatted Excel file. The file was originally coded using HTML tags, but I converted it to a real XLS file, removing the conditional ...
0
votes
1answer
498 views

With Rjb to invoke java from ruby:How to send constant params to java class?

I am using JXL.jar to generate Excel from ruby, when I format the cell, I need set the cell format with code like this: in java: WritableFont font = new WritableFont(WritableFont.ARIAL, 20, ...

1 2