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
  • 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. 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

This is kind of hard to explain, I hope my English is sufficient: I
This might be a little hard to explain, but I will try. I want
I need a dynamic string-array. All the examples I have seen show hard-coded string-arrays.
Maybe I'm just thinking about this too hard, but I'm having a problem figuring
I imagine this is a pretty hard question to answer without sitting down and
This shouldn't be so hard but I just can't seem to get this to
This may not really sound hard to do but it is currently killing me.
This is going to be hard to explain but I'll try my best. I
This is something that I always find a bit hard to explain to others:
I happened across this article about hardware based hard drive encryption and realized that

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.