Java Excel API - A Java API to read, write, and modify Excel spreadsheets

learn more… | top users | synonyms

0
votes
0answers
12 views

Setting Author (and more meta data) for XLS-File with jexcelapi

Within our company, the use of the author field of XLS-Files ist forced. As I prepare some files with the help of jexcelapi - I'd like to set this and other meta data within my code. I think, those ...
0
votes
1answer
18 views

Modify Date Cell in an Excel Workbook using JExcelApi in Java

I want to modify a date cell in excel. I even referred to http://www.andykhan.com but I didn't understand how to modify an already existing date cell. I want to modify in the same workbook.
0
votes
2answers
57 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
46 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
0answers
14 views

JExcel formatcondition java [duplicate]

I'm new on JExcel jxl API . I wloud like to add this formatcondition on my program java with jxl but I don't get any tutrorial or any thing ..is jxl not have this methode this is my exemple with ...
0
votes
2answers
51 views

FileNotFound when putting excel file into Workbook

I have a program that will upload the excel file and then get it's content to be put in a database. This part of the code works when I try to upload an excel file, here is my code in uploading excel ...
0
votes
0answers
17 views

Having trouble with WritableSheet.addImage(WritableImage)

I'm using jxl (JExcelApi) to save an Excel file, by copying an existing Excel file to a new file and modifying the copy. I've had great success in doing so, except for one issue. I'm trying to save ...
0
votes
1answer
14 views

how to copya writablesheet to a different workbook in JExcel?

i'm trying to have a writablesheet created by some method and then be included to another workbook which was created by the caller context but I don't seem to have too many options on IMPORTING a ...
0
votes
1answer
39 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 ...
0
votes
0answers
59 views

overwriting on excel files using java jxl

I made a programme that calculates shortest paths using some data contained in an excel file. The programme reads all the data in this file to create nodes. if the users input two values, then this ...
0
votes
1answer
35 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 ...
1
vote
0answers
107 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
31 views

JXL Get Cell Address

I am using the Java jxl api v2.6.16 to generate Excel Spread Sheet. Like the above title puts it, how do get an address of a Cell or More specifically Writable cell that I am writing to if all I have ...
0
votes
0answers
16 views

Make many sheet in jxl from database

I have a form student (name, class, address, phone number). User fill form student then application save this data to database. From this form, i want to make report excel. One student make one sheet ...
1
vote
0answers
31 views

Join some cell in file output excel android

I have project android with file output excel. I just to show this file excel with display cell by cell. Now i want to display this file with join some cell, make marge & center, and add colour. ...
0
votes
2answers
93 views

how to properly call a java function from a ftl file in ofbiz?

I think I have already done the necessary splicing for me to allow the gui to invoke a java method. This is my ftl file where the process should start, this is on a widget screens xml file and it is ...
0
votes
0answers
201 views

WritablewWorkbook.write() in jxl produces excel file which is empty 0b

What am I doing wrong here? The values of the JTextFields are valid and the code works to print the results to the Console. I get a file in my workspace, but its size = 0b and displays an empty ...
-1
votes
1answer
105 views

how to convert code from jxl to Apache POI? [closed]

I wrote this code to read username and password from Excel one by one and it will test in my application through TestNG .But i want this code in Apache POI.Can you please send me the code for Apache ...
0
votes
2answers
28 views

Good practice on file placement

I am developping a web-app which is generating Excel files at some point, using the JXL API. I was considering placing these files in the WebContent folder (into two subfalders, namely template and ...
0
votes
0answers
32 views

JXL Column Span

I have multiple rows in my excel, where contents are small except the top row. Just in order to insert a big title in the top row, i would not like the width of subsequent rows' to be impacted. Is ...
0
votes
0answers
41 views

JXL Excel not working with MS Excel but working fine with Open Office

JXL Excel not working with MS Excel but working fine with Open Office. I do have some drop-downs in the excel. And the excel file is of .xls format. I cant provide the format since it is too big.
2
votes
1answer
68 views

how to enhance this java class that reads xls file using POI and JXL?

I am currently using POI to read excel file and it is working great except it can't read xls files with older format (BIFF5/ office 95) to resolve this I am catching OldExcelFormatException and in ...
1
vote
2answers
73 views

How to know the excel file version in java?

I want to read excel files in java. I have some excel files with old format (excel 95) and others in new format (excel 2007). I am currently using poi but it is not able to read the excel files with ...
0
votes
1answer
346 views

Insert an image in Excel through JXL or POI

I am stuck in inserting an image into an excel file. The condition is I don't want a full size image to be displayed. The image size is of the regular pixles (1280 * 1024) but in the excel I want to ...
2
votes
0answers
98 views

How to process old excel .xls files using POI?

I switched from jxl to poi since POI has more features. However, I wasn't able to process the xls files that were generated in the old format. Now I am getting this error: ...
0
votes
1answer
56 views

Strange out of bounds exception when trying to read cell

I've been trying to read an excel sheet and insert data from cells into a program. I am successful to a point, but when I try and get the data from cells in position 4 and onwards, I get an out of ...
-1
votes
1answer
511 views

JXL VS Apache POI [closed]

I am new to Java. Can any one tell which is the best API's for processing excel sheets. What is the drawbacks and advantages of both API's.
0
votes
3answers
1k views

What is the better API to Reading Excel sheets in java - JXL or Apache POI

Which of the 2 APIs is simpler to read/write/edit excel sheets ? Do these APIs not support CSV extensions ? Using JXL for file.xls and file.xlsx, I get an exception like: ...
0
votes
0answers
233 views

How to edit an existing excel file with JXL

When I open a file using WritableWorkbook and add some data to it the data that was already in the file gets erased. Is there any way to edit data in specific cells while preserving the preexisting ...
0
votes
0answers
37 views

Junk characters in spreadsheet - Jboss

I have successfully configured jboss and it makes connection with AS-400 DB2 server. I am able to retrieve reports in html formats, but if output is in spreadsheet it shows junk characters. I have ...
1
vote
2answers
719 views

different colors for cells in excel sheet using jxl

I have been learning how to use jXL API as I'm new to it. I have an excel sheet, where I want to color the cells' data based on an true/false condition. For ex, if the condition is true, it has to be ...
1
vote
1answer
305 views

Inserting multiple data into an excel sheet at a time using JXL

I have a scenario where I have to insert multiple lines of data into an Excel Sheet. I am using JXL API for this purpose. However the problem is that, only the last set of data in the loop is being ...
0
votes
1answer
58 views

setting jxl custom font

How to add custom fonts in jxl? Apart from the one available by default in jxl? There are fonts listed in WritableFont class, how to add fonts apart from the one mentioned there? Regards, A Y.
1
vote
1answer
193 views

Append excel cell contents to new excel file

I have a piece of code that reads the contents and pastes it into the new excel file The code is for(int rownum=2; rownum<=datatable.getRowCount(testName); rownum++) for(int colnum=1; ...
0
votes
1answer
106 views

Android and JXL : ArrayIndexOutOfBoundException when create WritableWorkbook

i'm trying to modify an xls file from my Android device with JXL. The first step, if I have well understood, is to copy the workbook. Here's my code that throw the exception when write : ...
0
votes
0answers
38 views

Loss of Excel File Contents on manipulation

Whenever i try to modify a spreadsheet the which is initially blank(suppose size:27 KB) but after the code has run on it becomes 0KB. I can't understand what is going wrong. Workbook workbook = ...
-1
votes
1answer
94 views

Excel file corrupted during write

Whenever i try to manipulate an excel file,the corresponding excel file gets corrupted. Please give suggestion of how to tackle this thing. I have written the code in java. Here is the code: ...
-4
votes
1answer
267 views

Fetching specific row from an Excel file using Java program [closed]

Fetching specific row (key will be 1st column: ID) from an Excel file using Java program. How we can do it?
0
votes
0answers
113 views

How to give drop down selection for excel sheet Header using apache poi?

I want to give drop down selection for the excel generated by my code using apache poi. Like i have headers viz empid,role,etc..i need a drop down on each of header so that i can get only records of ...
0
votes
1answer
334 views

Modifying Excel worksheet that contains metadata - how can I avoid unnecessary warnings?

I've been given an Excel worksheet that I have to fill in so I'm using JExcel to do it for me. However, when I use JExcel to fill just one cell, it works but I get a whole bunch of unnecessary ...
0
votes
1answer
989 views

struts 2 Can not find a java.io.InputStream with the name [excelStream] in the invocation stack

excelStreamI am trying to download an excel file. In my Action class public class ActivityTrackerExlReportAction extends BaseAction { private InputStream excelStream; private UserMasterDTO ...
0
votes
0answers
243 views

Can not find a java.io.InputStream with the name [excelStream] in the invocation stack

I am trying to download an excel In my Action class public InputStream getExcelStream() { return excelStream; } public void setExcelStream(InputStream excelStream) { this.excelStream = ...
0
votes
2answers
531 views

JXL Support for excel 2007 format

I my app, I have used JXL to parse XLS sheets. Now as per the client requirement I need to provide support for XLSX (Excel 2007) format also. But it seems that JXL has not published any version ...
1
vote
3answers
137 views

How to read from a dynamic excel file?

Values in my dynamic excel file are changing every second, and i would like to read the new values through java. The problem I am facing is that I have to always save the file and then load its values ...
0
votes
2answers
694 views

How to send excel file which is generated using jxl.jar from server machine to client

I am using struts to develop my web application. I wrote a method which generates excel file and saves it based on the data model I pass.. Works great on my local machine since tomcat is present ...
1
vote
1answer
94 views

Write data into cell into one line

I am using jxl to export an excel sheet. I just need to write data into a cell into just one line without shifting data to a new line into same cell. Expected at Cell: Hello I am just testing ...
-7
votes
1answer
69 views

i have an excel sheet with one title and different fields [closed]

Title type Publisher Place Accession Number Volume Location harrypotter Book omg newyork A1 2 newyork A2 2 newyork ...
1
vote
1answer
93 views

JXL datetime no need the part time

Hello i wrote this code to add a Date in excel but when the cell is added he show also the time. I want eliminated the time part. Thank you in advance if someone can help .. Tabla[tabReg][tabCol]); ...
0
votes
0answers
93 views

NullPointerException while using JXL

I am trying to edit an existing Excel file. I get the following error. I searched for the solution but i haven't got any till now. Please help me regarding this issue. I have pasted the error message ...
0
votes
1answer
200 views

JXL + POI : incompatibility

Im first using JXL to modify one xls file created by POI. After that I will try to read that file with POI. In the moment of POIFSFileSystem creation poFileSystem = new POIFSFileSystem(input); Im ...

1 2 3 4