up vote 0 down vote favorite
share [g+] share [fb]

My excel sheet contains many columns and many rows.

I want the program to read the contents of first column alone and display in the output.

Using

    for (Row row : sheet) {
    for (Cell cell : row) {
        // Printing Stuff
        }
    }

The above code prints the contents of all the cells of the excel sheet. But I want the contents of first column alone to be printed.

How to alter the code for this? Am a beginner in java. Please help

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You can try this :

for (Row row : sheet) {
    Cell firstCell = row.getCell(0);
    // Printing Stuff
}

Resources :

link|improve this answer
Thats perfect Colin. tHANKS :) – LGAP Sep 8 '10 at 20:52
feedback

Your Answer

 
or
required, but never shown

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