I am having problems calling classes at run time in java Im basically making a plugin framework
it starts off by opening plugin/Plugins.cfg and parses the test into a ma
Your file
doesn't point to a valid class or jar file.
Debug the following line; you will notice it's path isn't an existing path in your file system.
File file = new File(System.getProperty("user.dir") + File.separator + "plugins" + File.separator + className);
I would assume that you've forgotten to include .class
in the className
.