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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T19:12:28+00:00 2026-06-15T19:12:28+00:00

How to dynamically call methods of Java Bean. I have the following methods in

  • 0

How to dynamically call methods of Java Bean.

I have the following methods in a class of Java:

public class Bean {
   public String column1val;
   public String column2val;
   public String column2val;

} 

I need to access these methods from for loop like the below:

for(int i=0;i<2;i++) { 
    String s = Bean.get column+i+val;
}

How can we achieve this scenario ?

  • 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-15T19:12:28+00:00Added an answer on June 15, 2026 at 7:12 pm

    Sample Code.

    import java.lang.reflect.InvocationTargetException;
    import java.lang.reflect.Method;
    
    public class Bean {
        public String getMethod1(String a) {
            return a;
        }
    
        public String getMethod2(String a) {
            return a;
        }
    
        public static void main(String[] args) throws SecurityException,
                NoSuchMethodException, IllegalArgumentException,
                IllegalAccessException, InvocationTargetException {
            Bean bean = new Bean();
            for (int i = 1; i <= 2; i++) {
                Method method = Bean.class.getMethod("getMethod" + i, String.class);
                System.out.println(method.invoke(bean, "Simple"));
            }
    
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class which uses resolveInstanceMethod to dynamically implement methods. When I call
I have a class that requires dynamically setting a List. I also call this
I am using reflection to dynamically call some methods from extended class. Unfortunately one
I'd like to call methods of a class dynamically with parameter values that are
I'm using reflection to dynamically call methods. $object = new $class; $reflector = new
I have to dynamically call a list of methods on an object obj. I
I'm trying to load a java .class file dynamically and call it by reflection.
I have the following scenario I want to add methods dynamically to a controller.
I want to make a class that has the ability to dynamically call methods
Overview: I am writting an application to dynamically load .dlls and call their methods.

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.