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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T01:52:05+00:00 2026-06-16T01:52:05+00:00

I have an Excel file and I need to read a value from a

  • 0

I have an Excel file and I need to read a value from a textbox inside that Excel file.

I am using org.apache.poi library and I tried to obtain the value in the following way:

   List<HSSFObjectData> obj=workbook.getAllEmbeddedObjects();
   for (int i = 0; i < obj.size(); i++) {           
       HSSFTextbox t = (HSSFTextbox) obj.get(i);
   }

Unfortunetly I couldn’t cast HSSFTextbox to a HSSFObjectData element.

Does anyone know how could this be done?

  • 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-16T01:52:06+00:00Added an answer on June 16, 2026 at 1:52 am

    Maybe you can do like this:

        try {
            InputStream input = new FileInputStream("qa-textbox.xls");
            POIFSFileSystem fs = new POIFSFileSystem(input);
            HSSFWorkbook wb = new HSSFWorkbook(fs);
            HSSFSheet sheet = wb.getSheetAt(0);
            HSSFPatriarch pat = sheet.getDrawingPatriarch();
            List children = pat.getChildren();
    
            Iterator it = children.iterator(); 
            while(it.hasNext()) {           
                HSSFShape shape = (HSSFShape)it.next();
                if (shape instanceof HSSFTextbox){
                  HSSFTextbox textbox = (HSSFTextbox)shape;
                  HSSFRichTextString richString = textbox.getString();
                  String str = richString.getString();
                  System.out.println("String: " + str);
                  System.out.println("String length: " + str.length());
                }
            }  
        } catch (IOException ex) {
            ex.printStackTrace();
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an Excel file that gets external data from database table. I need
I have to read from a Excel file using X++ Code. Bellow is the
I need to create an excel file via C#. I have read a few
I have an excel file that I need to make some changes. I need
I have an Excel file that I need to import into a (new) Oracle
I have few text and excel file, from which I need to import data
I have a WPF-mvvm application. I need to read an excel file..and create a
I have a program that takes data from an excel file and manipulates it
Need to be able to read an Excel file uploaded using FileUploadControl in ASP.NET.
I am writing a client-side script. I need to read an Excel file from

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.