Tagged Questions
The jexcelapi tag has no wiki summary.
18
votes
3answers
6k views
JExcelAPI vs Apache POI, which is better?
I have to parse a simple Excel file (xls or xlsx, free to choose) to extract data from it. Each row will contain an account data; each column will be like FirstName, e-mail etc.
No fancy formating in ...
5
votes
5answers
4k views
Which library should I use to write an XLS from Linux / Python?
I'd love a good native Python library to write XLS, but it doesn't seem to exist. Happily, Jython does.
So I'm trying to decide between jexcelapi and Apache HSSF:
...
3
votes
2answers
303 views
Writing JTable into Excel
I am planning to move the contents of a JTable into a Microsoft Excel sheet. The Excel sheet should have some format specifications. For instance if a column has a value 'A' it should be green in ...
3
votes
2answers
327 views
What is the best way to write an excel file from Java?
What library would you guys recommend to write an excel file from Java? It has to be pure Java solution, so it will work on any platform.
Thanks,
Grae
EDIT: It can't be CSV file format. It has to ...
3
votes
2answers
2k views
Opening an Excel file using the default program
My program successfully creates and fills a Excel(.xls) file. Once created, I would like the new file to open in the system's default program (Excel in my case). How can I achieve this?
For an older ...
3
votes
4answers
1k views
Making new colors in JExcelApi
I'm using JExcelApi for generating XLS files. From jxl.format.Colour, I see how to get any of the colors in the "standard Excel colour palette", but not how to create a new color (say, given its ...
2
votes
2answers
738 views
JExcelApi: multiple formats in one cell?
In Excel, I can have multiple text styles in a single cell. Is there a way to create a file like this using JExcelApi? I'm not seeing anything so far: setCellFormat is a method on WritableCell, and ...
1
vote
2answers
83 views
encoding in jexcelapi
I using jexcelapi for android.
I write string "Hello jExcelAPI!", but when I read I see Chinese symbols.
How I can fix it?
Thanks in advance.
P.S. Maybe it help: I dont know what need give in ...
1
vote
1answer
43 views
Why does jExcelAPI dump warnings in stderr and how to stop this behaviour?
While trying to read an xls file using jExcelAPI, I find that the library dumps a lot of information in stderr, sometimes this information is not relevant. For example, this code snippet causes lots ...
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
399 views
Evaluation from Apache POI and JExcel Api
I need create Excel woorkbooks in Grails, Grails support both Apache POI and JExcel Api, but I would like you to tell me about the advantages and disadvantages of both.
According to I know, Apache ...
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
3answers
2k views
JExcelApi currency format on formula cell - file error
I'm writing a spreadsheet with JExcelApi.
I have two cells that I want to apply currency formatting to. From reading the API I discovered jxl.write.NumberFormat, which seems to do what I want. In ...
1
vote
4answers
2k views
jExcelApi - cell date format reusing doesn't work
I created a wrapper to jExcelApi classes to easily export lists of objects to Excel. To minimize object creation cell formats are created as static fields and reused in consecutive calls to export. ...
1
vote
3answers
2k views
JExcelAPI - writing date to Excel sheet ignores day, month and year
I try to generate some Excel sheets in Java application using JExcelAPI (v. 2.6.3) and can't generate date cells properly. For example, for code:
WritableWorkbook workbook = null;
workbook = ...
0
votes
0answers
33 views
JExcelApi: multiple different formats for parts of a cell?
I wonder whether it's possible to use Java JExcepAPI to create an Excel file cell (Label) containing text "Red Rose Blue Sky" where "Rose" is shown in red and "Blue" is - guess what?
So far, it looks ...
0
votes
1answer
60 views
Error when call write()
I have error in line:
workbook.write();
When I try debug, i see massage: "Source not found."
How it fix?
private void exportExcel() throws IOException, WriteException{
File file = ...
0
votes
1answer
130 views
java excel api- how to determine last row when reading a spreadsheet
I cant see any mention of how to check if current cell is last row in a spreadsheet in java excel api docs...
When I use code and try to fetch data in next row (after the last row) I get an error-
I ...
0
votes
1answer
51 views
How to set Jexcel name in Spring mvc?
I'm following with mkyong Jexcel with Spring tutorial and everything looks fine.it can create excel file and write sheet except one thing is I can't change my excel file name? It will display file ...
0
votes
1answer
218 views
email Excel file (in memory) as an attachment on Google app Engine
I googled and tried several approaches but failed.
Here is the question: I try to create a excel file (using JExcelApi) and email it as an attachment on google app engine.
public void ...
0
votes
1answer
72 views
cannot able to encode the excel sheet using jexceapi
I have to create one excel sheet using JExcel api..I cannt able to encode the excel file and am not able to sure whether the file is encoded or not ?...
pls help
import java.io.BufferedReader;
...
0
votes
2answers
163 views
How to get and put columns name of Excel using Java?
How to get column name of Excel sheets using Java? I am using jexcel package for reading from and writing into excel sheet. And also how to change a column name of an Excel sheet?
0
votes
0answers
471 views
Errors while Copying Workbook using JExcel API
I am trying to copy a large Excel file with multiple worksheets and a ton of formulas using JExcel API; however, when I run the following code--
Workbook w = Workbook.getWorkbook(inputWorkbook);
...
0
votes
3answers
171 views
How can I create a Excel Table using Java?
I am using JExcel for creating an excel document. I want to create a Excel table in Excel document using JAVA. I have populated the rows and columns in cells, I could not able to create Excel table ...
0
votes
2answers
325 views
Reading multiple excel sheet
I am trying to read the sheets of a spread sheet uisng a foor loop. I wanted to know is this the right way of reading especially the use of Sheet Propety [highlighted in the code] :
Cell[][] ...
0
votes
0answers
227 views
CSV to excel file
I am given a CSV file of below format and was asked to write a java pgm to read this csv in the same exact format without modifying.
Initially, I changed the csv to excel file by saving it as excel ...
0
votes
4answers
936 views
Encoding problem in JExcel
I am loading an excel file in an GAE/Java application with JExcel like this:
The html form to upload the file islike this:
<form id="" action="/save" method="post" enctype="multipart/form-data" ...
0
votes
1answer
339 views
JExcel Wrap Text Problem
I have used JExcel api for generate Excel report.
I have issue in wrapped text.
It show me sqaure character instead of new line character.
WritableSheet s1 = workbook.createSheet("test", 0);
...
0
votes
2answers
553 views
how to set number format to cells using jexcel api
I am writing a excel sheet with various floating values . It is absolutely necessary that i do not lose any decimal point when doing this. I am using this code:
number = new Number(1, ...
0
votes
1answer
110 views
faced with date parsing problem in jexcel api
I have created a file named tablenew.xls which has date with following code:
DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
Date date = ...
0
votes
1answer
273 views
not able to parse string into date using jexcel api
I am faced with a problem i faced a few days ago. i have to parse this file and convert the string into date. I had done the same to another CSV file few days ago. However, the new file is giving this ...
0
votes
0answers
223 views
copy entire sheet to another Workbook in jexcel
I want to copy a workbook to another workbook using jexcel. Problem is that both the workbooks have data which must not be erased. The workbook where i want to copy has some empty rows where the ...
0
votes
1answer
345 views
How to convert a string to Date and then add it to excel using jexcel api
I am currently reading a CSV file. I have to extract the dates from it and add them to excel file in dd-MM-yy format. I am faced with two problems.
I am using String.split(delim) where, delim="[,]". ...
0
votes
0answers
225 views
Jexcel api - euro/pound/yen currency bug?
Platform: Jexcel API 2.6.12, MSExcel 2007 SP2 on Windows 7.
I have no difficulty formatting a cell with dollars, but anything else results in Excel displaying (where the currency symbol should be) a ...
0
votes
1answer
132 views
How to Track Changes with jexcelapi or Apache HSSF
I am writing an MS Excel file with Java and what to set the "Track Changes" flag so I can see where people make modifications later. How can I set this flag in either jexcelapi or Apache HSSF?
0
votes
1answer
122 views
outOfMemoryException while reading excel data
I am trying to read data from an excel file(xlsx format) which is of size 100MB. While reading the excel data I am facing outOfMemoryException. Tried by increasing the JVM heap size to 1024MB but ...
0
votes
1answer
160 views
JExcel Output Issues
I'm trying to write out to an Excel Sheet in Java using JExcel. I successfully write out, however I keep running into the "java.lang.OutOfMemory: Java heap space" error. From what I've read there ...
0
votes
0answers
131 views
jexcel - transpose question
I am trying to work with JExcel API and had the following question.
I have queried my database tables for 3 columns: id, time, value. I am adding them into different arrays as objects. I want to ...
0
votes
1answer
358 views
Using the JExcel API, how do I enter a cell value of unknown data type without a hidden apostrophe being added?
I'm using the JExcel API to create an XLS file. I can't figure out how to populate a new cell without any specific cell formatting. I would like the formatting to be automatically applied, as it ...
0
votes
3answers
2k views
How to read excel using jexcel?
i am trying to read an Excel file using Java code
however i am getting following error :
jxl.read.biff.BiffException: Unable to recognize OLE stream
when i searched on net i found jExcel supports ...
0
votes
1answer
310 views
Installing jexcelapi
how do you use the third party libraries?
I have downloaded it, but am unsure what to do with it, do i place it in my eclipse project folder etc?
I did look on the website but to no avail
Thanks
0
votes
1answer
330 views
JExcel doesn't copy Array formula
I open excel file by JExcel, modify some cells and save it.
As result Array formulas({ ... } CTRL+SHIFT+ENTER) was broken.
Does anybody know what to do? (FormulaException is rasing during copy)
0
votes
2answers
1k views
Problem when extracting excel data using POI in JAVA?
I have just Extracted the cells from the excel sheet using POI, everything is working fine. But whenever there is an empty cell, the very next right cell data is what I get as a output. But, if exists ...
0
votes
1answer
169 views
Detecting struckout text in a cell using JExcelApi
I need to detect whether the text within a cell is struck out or not. I'm using this:
Cell cc = sheet.getCell("B1");
CellFormat format = cc.getCellFormat();
...
0
votes
4answers
2k views
Choosing an excel java api
All I need to do is open an MS excel sheet - not sure which kind yet (2003, 2007, etc.) - and parse the information in each row into an object. I'm performing only readonly operations.
out of Apache ...
-1
votes
0answers
20 views
JExcel Api setRowView() does not work
When i use excelSheet.setColumnView(0,5), it works totally fine, it gives 5 width to the 0 column space.
But I don't understand why whenever I use excelSheet.setRowView(1,5), it only hides the row ...