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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T16:19:54+00:00 2026-05-10T16:19:54+00:00

Why is it so hard to do this in Java? If you want to

  • 0

Why is it so hard to do this in Java? If you want to have any kind of module system you need to be able to load JAR files dynamically. I’m told there’s a way of doing it by writing your own ClassLoader, but that’s a lot of work for something that should (in my mind at least) be as easy as calling a method with a JAR file as its argument.

Any suggestions for simple code that does this?

  • 1 1 Answer
  • 1 View
  • 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. 2026-05-10T16:19:54+00:00Added an answer on May 10, 2026 at 4:19 pm

    The reason it’s hard is security. Classloaders are meant to be immutable; you shouldn’t be able to willy-nilly add classes to it at runtime. I’m actually very surprised that works with the system classloader. Here’s how you do it making your own child classloader:

    URLClassLoader child = new URLClassLoader(         new URL[] {myJar.toURI().toURL()},         this.getClass().getClassLoader() ); Class classToLoad = Class.forName('com.MyClass', true, child); Method method = classToLoad.getDeclaredMethod('myMethod'); Object instance = classToLoad.newInstance(); Object result = method.invoke(instance); 

    Painful, but there it is.

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

Sidebar

Related Questions

Hi I have created executable jar of my java program i want to create
It is hard to find a resource on this without finding Java EE, but
It's hard to put this into the title, so let me explain. I have
I am having a hard time on this one, I have a folder over
I'm building a Monopoly game in Java and I want it to be able
I have a Java Application and want to interface Ogre inside it. Specifically Ogre
I need a dynamic string-array. All the examples I have seen show hard-coded string-arrays.
I have a web application (Spring, Java) interacting with some plugins in my system
Mine is this: Hard coding is the way! All my problems go away. Just
This is hard for me to word, but easier for me to demonstrate: I

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.