Questions tagged [jxl]

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

From http://jexcelapi.sourceforge.net/:

Java Excel API is a mature, open source java API enabling developers to read, write, and modifiy Excel spreadsheets dynamically. Now java developers can read Excel spreadsheets, modify them with a convenient and simple API, and write the changes to any output stream (e.g. disk, HTTP, database, or any socket). Any operating system which can run a Java virtual machine (i.e., not just Windows) can both process and deliver Excel spreadsheets. Because it is Java, the API can be invoked from within a servlet, thus giving access to Excel spreadsheets over internet and intranet web applications.

455 questions
-2
votes
1 answer

Output values from selenium webdriver to excel sheet

I am using selenium webdriver to output first three records by using the Advanced Search of Linkedin in an excel sheet however I am not getting all the values of 'name' and 'description' fields except one. Please look into this public void…
testing
  • 45
  • 2
  • 12
-2
votes
5 answers

How to read Data from Excel sheet in selenium webdriver

I'm trying to read username and password from the excel file, below is my code but it shows following error : log4j:WARN No appenders could be found for logger (org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager). log4j:WARN Please…
Khushali
  • 5
  • 1
  • 1
  • 2
-3
votes
1 answer

How to read and edit a password protected workbook using jxl

How can I programmatically check if a workbook of an excel file is password protected? If protected, how can I read and edit it using jxl? For background, I wanted to make a file password protected but could not find a method to do it using jxl so I…
blackfyre
  • 2,549
  • 5
  • 39
  • 58
-4
votes
1 answer

why i am getting file not found exception?

I am facing a issue with struts2 framework. I want to get data of excel file in Action class from html form. i am getting exception like- jxl.read.biff.BiffException: The input file was not found My Action class is - import…
user3860841
  • 39
  • 5
  • 12
-4
votes
1 answer

How can I have bold for particular cell in excel using java

May I know how can I use bold in the same code?I need only one row should be in bold. how can I write code for it? My code, WritableFont cellFont = new WritableFont(WritableFont.TIMES,14); cellFont.setBoldStyle(WritableFont.BOLD);…
Arun Kumar
  • 225
  • 2
  • 8
  • 20
1 2 3
30
31