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 7808425
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T03:07:55+00:00 2026-06-02T03:07:55+00:00

I am using Apache POI to parse excel file and to get values back

  • 0

I am using Apache POI to parse excel file and to get values back am doing by row.getCell(5).getNumericCellValue() assuming that cell(5) on that row would always be number.

Is it possible to intelligently parse file so that even if order of columns is changed or jumbled even then we can look for values based on columnName so that contract year always comes from the column labelled Contract Year – regardless of whether that column is the 6th or 7th column?

  • 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-02T03:07:57+00:00Added an answer on June 2, 2026 at 3:07 am

    You could implement a function called getContractYearColumnIndex() which returns the index you need.

    private int getContractYearColumnIndex(){
        final int maxColIndex = 25;
        int colIndex = 0;
        HSSFRow titleRow = yourSheet.getRow(0);
        String value = titleRow.getCell(colIndex).getStringCellValue();
    
        while(value != "Contract Year" && colIndex < maxColIndex){
            colIndex = colIndex + 1;
            value = titleRow.getCell(colIndex).getStringCellValue();
        }
        return colIndex;
    }
    

    Of course, this implementation supposes the title you’re looking for is in the first row (index 0).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to parse an excel file using the Apache POI library to boot
How to get the column names in an Excel file using Apache POI, to
I'm using Apache POI 3.6, I want to read an excel file which has
I am writing an Excel File using Apache POI. I want to write in
I'm generating an excel file using Apache POI 3.8 , and have the need
I have opened a large excel file as a Apache POI workbook (using VM
Whilst trying to parse MS Excel file using POI-HSSF v3.2 I am getting IndexOutOfBoundsException.
I'm using Apache POI to create a large Excel spreadsheet that is extremely formula
I am generating xlsx file using Apache POI. On making the war and deploying
I'm trying to set Excel cell colors using Apache POI in Java. I played

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.