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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T07:06:00+00:00 2026-05-26T07:06:00+00:00

I have a jar file with 30 or so classes. What I want is

  • 0

I have a jar file with 30 or so classes. What I want is that at the beginning of the main method I invoke a class from within this jar which using Java’s reflection capabilities gets Class references to each class in the jar. My ultimate goal is to perform some sort of operation, querying a variable which is defined for every class. Basically I’m looking for something like. Is there an easy way to do this using the standard reflection APIs or it will be too much of a hassle to make a working solution?

List l = Reflection.getAllClasses();
String var;
foreach(Class c : l) { 
    var = c.getField("fieldname");
    doSomething(var);
}

Edit:

Just to make it clear: The code will be executed from withing the inspected jar.

  • 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-05-26T07:06:00+00:00Added an answer on May 26, 2026 at 7:06 am

    This does the trick for me:

    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Enumeration;
    import java.util.jar.JarEntry;
    import java.util.jar.JarFile;
    
    
    public class ClassFinder
    {
        public static void main(String[] args) throws IOException
        {
        Collection<Class<?>> classes = new ArrayList<Class<?>>();
    
        JarFile jar = new JarFile("/home/nono/yamts/yamts.jar");
        for (Enumeration<JarEntry> entries = jar.entries() ; entries.hasMoreElements() ;)
        {
            JarEntry entry = entries.nextElement();
            String file = entry.getName();
            if (file.endsWith(".class"))
            {
                String classname = file.replace('/', '.').substring(0, file.length() - 6);
                try 
                {
                    Class<?> c = Class.forName(classname);
                    classes.add(c);
                }
                catch (Throwable e) 
                {
                    System.out.println("WARNING: failed to instantiate " + classname + " from " + file);
                }
            }
        }
    
        for (Class<?> c : classes)
            System.out.println(c);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a jar file. I want to know which external classes and methods
I have a JAR with 4 classes, each one has Main method. I want
I have a jar file and I want to know which all classes are
That is when you have any jar file attached to you your class path.
I have two classes. I created a JAR file using: jar cvf practice.jar class1.class
I have a keystore file that I want available to several classes in my
I have a jar file that I would like to execute using PHP, but
I have a jar file with resources (mainly configuration for caches, logging, etc) that
I have a jar file and I invoke the jar using java -jar myjar.jar
I have a java JAR file that is triggered by a SQL server job.

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.