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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T04:36:58+00:00 2026-06-11T04:36:58+00:00

Possible Duplicate: How do I invoke a private static method using reflection (Java)? So

  • 0

Possible Duplicate:
How do I invoke a private static method using reflection (Java)?

So there is a method named something along the lines of “getInstance” which just returns an instance of a certain class. It’s a static method with no arguments.

How could I call that method, and get the return value (the instance) of the class? Every method I try to use requires me to have an instance of the class in the arguments it seems.

For example, I try to use

Method method = classLoader.loadClass("testClass").getMethod("getInstance", null);
            Object object = method.invoke(null, null);

but I always get a null pointer exception at this line,

Object object = method.invoke(null, null);

Which I’m assuming I get since the object it asks for is null.

Thanks for any help.

Edit: Method is not null. I am doing a System.out.println(method == null); and it prints out false.

  • 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-11T04:36:59+00:00Added an answer on June 11, 2026 at 4:36 am

    You don’t want null as your argument or parameter list. Instead you can do

    Method method = classLoader.loadClass("testClass").getMethod("getInstance", new Class[0]);
    Object object = method.invoke(null, new Object[0]);
    

    or the following as they are varargs methods.

    Method method = classLoader.loadClass("testClass").getMethod("getInstance");
    Object object = method.invoke(null);
    // or works but is perhaps confusing.
    Object object = method.invoke(null, null);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Use reflection to invoke an overridden base method Normally I can call
Possible Duplicate: How can I lock a file using java (if possible) I have
Possible Duplicate: Timer, event and garbage collection : am I missing something? private void
Possible Duplicate: Copy Constructor is not invoked # include <iostream> using namespace std; class
Possible Duplicate: How do I make a request using HTTP basic authentication with PHP
Possible Duplicate: Objective C for Windows iPhone development on Windows Is there any way
Possible Duplicate: Run a code in given time interval I have a method that
Possible Duplicate: What is the purpose of the expression “new String(…)” in Java? It's
Possible Duplicate: C++ invoke explicit template constructor First imagine I have a class Data
Possible Duplicate: C++ member-function pointer How to invoke pointer to member function when it's

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.