Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8247455
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T22:51:11+00:00 2026-06-07T22:51:11+00:00

Can I read a excel sheet column wise using apache poi..?(without using row Iterator)

  • 0

Can I read a excel sheet column wise using apache poi..?(without using row Iterator)

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

I know, the above one will do the same. But I need to get first column’s data without using Row Iterator.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T22:51:13+00:00Added an answer on June 7, 2026 at 10:51 pm

    You can iterate over the sheet without using iterator

        Workbook wb = WorkbookFactory.create(new FileInputStream("file.xls"));
        Sheet sheet = wb.getSheetAt(0);
    
        for (int j=0; j< sheet.getLastRowNum() + 1; j++) {
            Row row = sheet.getRow(j);
            Cell cell = row.getCell(0); //get first cell
            // Printing Stuff
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can I read an excel file without using any module? I tried like just
I'm trying to read data from excel using POI. How can I check if
I've a requirement that I need to read an excel sheet programmatically using asp.net/C#
Can anybody help me? How can I read only first row from an Excel
How can I read the excel file using C# 4.0. Once I saw in
I'm trying to read an excel file from C# using COM, and can get
I am using IExcelDataReader to reader to read a excel sheet using following code:
How can I read excel data (office 2007 xlsx) in PHP? Is there any
I can read unmanaged memory in C# using UnmanagedMemoryStream, but how can I do
Possible Duplicate: Reading Datetime value From Excel sheet I'm trying to read in a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.