column « Excel File « Java I/O Q&A





1. How to count the number of columns in excel file that are occupied by data. Using Java    stackoverflow.com

I need to count the number of columns that are occupied in an Excel file. Are any API's available for doing this through Java?

2. How to add colour for the columns and rows in excel file in java?    stackoverflow.com

Am working on a application to read the values from database and store it in a excel file . Now i need to add different color to the different columns and rows ...

3. Java File rename from Excel columns CODE doesn't work with files with 10 characters in their name    coderanch.com

So I wrote some code to rename files according to an excel sheet. The excel sheets has two columns, a list of current filenames on the disk, and the corresponding renames to be performed on the selected file. Here's the code import java.io.*; import jxl.*; import jxl.read.biff.BiffException; import java.io.IOException; public class Rename { /** * @param args */ public static void ...

4. Deleting columns in excel file to create new Excel file    coderanch.com

I have a requirment in my project where I am required to apply some templates (selected columns) to a EXCEL file.These templates will be stored in database. I need to delete the columns other than the ones in the template and save a new file OR Select those columns in template from the excel file and create a new file and ...