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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T07:46:58+00:00 2026-06-01T07:46:58+00:00

I am trying to get a list of objects from the Database based on

  • 0

I am trying to get a list of objects from the Database based on a target object through reflection.
I don’t have much experience with reflection so this doesn’t work.
Is it even possible to achieve my goal?

public static List<Object> getObjectsFromDataBase(Object targetObj) {
....................
ResultSet rs = stat.executeQuery(queryToExecute);
while (rs.next()) {
     Object obj = new Object();
     for (Field property : targetObj.getClass().getFields()) {
      property.set(obj, rs.getString(property.getName()));
     }
     objListToReturn.add(obj);
}
.....................
return objListToReturn;
}
  • 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-01T07:47:00+00:00Added an answer on June 1, 2026 at 7:47 am

    If the fields in the target object’s class are not public they won’t show up in getFields(). Try this:

    import java.lang.reflect.Field;
    
    public class Test
    {
        public static class A
        {
            public String field1;
            public String field2;
        }
        public static void main(String[] args) throws Exception
        {
            A a = new A();
            Object b = a;
            for (Field f : b.getClass().getFields())
            {
                System.out.println(f.getName());
            }
    
        }
    }
    

    If you remove public, getFields() returns an empty array.

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

Sidebar

Related Questions

I am trying to get a list of all objects in the database of
I'm trying to populate a listviewactivity's list with objects returned from an DB40 database,
I am trying to get the list of people from the http://en.wikipedia.org/wiki/Category:People_by_occupation . I
I'm working on a Spotify app and trying to create a views.List object from
Based on this answer Get the subdomain from a URL , I am trying
I am trying to get a list of subdirectories in a given directory using
I am trying to get a list of shares on a specific machine. So
I'm trying to get a list of user's friends using fb connect for the
I am trying to get a list together of tools/libraries that make me more
I'm trying to get a list of usernames and bind them to a DropDownList

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.