Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am able to read all the cells but due to macro used in excel for manging combos i am not able to get their values.Here are my Excel Sheets Below is my code

package tin.poi;

import java.io.FileInputStream;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.poifs.filesystem.POIFSFileSystem;

public class POITest {
public static void main(String[] args) {

    String fileName = "D:\\eGPDocs\\CPTU_Formats\\Pre-quaificatonForm_1.xls";
    //String fileName = "D:\\eGPDocs\\CPTU_Formats\\test.xls";
    //Read an Excel File and Store in a List
    List dataHolder = readExcelFile(fileName);
    //Print the data read
    printCellDataToConsole(dataHolder);
}

public static List readExcelFile(String fileName) {
    /** --Define a List
    --Holds Lists Of Cells
     */
    List cellListHolder = new ArrayList();

    try {
        /** Creating Input Stream**/
        //InputStream myInput= ReadExcelFile.class.getResourceAsStream( fileName );
        FileInputStream myInput = new FileInputStream(fileName);

        /** Create a POIFSFileSystem object**/
        POIFSFileSystem myFileSystem = new POIFSFileSystem(myInput);

        /** Create a workbook using the File System**/
        HSSFWorkbook myWorkBook = new HSSFWorkbook(myFileSystem);

        /** Get the first sheet from workbook**/
        HSSFSheet mySheet = myWorkBook.getSheetAt(0);

        /** We now need something to iterate through the cells.**/
        Iterator rowIter = mySheet.rowIterator();

        while (rowIter.hasNext()) {
            HSSFRow myRow = (HSSFRow) rowIter.next();
            Iterator cellIter = myRow.cellIterator();
            List cellStoreList = new ArrayList();
            while (cellIter.hasNext()) {
                HSSFCell myCell = (HSSFCell) cellIter.next();
                cellStoreList.add(myCell);
            }
            cellListHolder.add(cellStoreList);
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
    return cellListHolder;
}

private static void printCellDataToConsole(List dataHolder) {

    for (int i = 0; i < dataHolder.size(); i++) {
        List cellStoreList = (List) dataHolder.get(i);
        for (int j = 0; j < cellStoreList.size(); j++) {
            HSSFCell myCell = (HSSFCell) cellStoreList.get(j);
            String stringCellValue = myCell.toString();
            System.out.print(stringCellValue + "\t");
        }
        System.out.println();
    }
}
}
share|improve this question
1  
What do you see? What do you expect to see? How does it not work? Is this for all files, or only some? How do you reproduce the issue? etc... – Gagravarr Jul 3 '12 at 14:00
Yeah for all files. In the output i get blank for the combo values(macro) even i had tried jacob and put the dll also but still coming null – taher Jul 4 '12 at 6:07

1 Answer

i have also same problem but i resolved by doing below steps. 1.first i convert xls to xlsx. 2.for only macro cells i red xlsx with POI and sax parser. 3.POI with sax example enter link description here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.