Alright, so I have this jar file and I'd like to retrieve all the classes inside that jar.
I've seen some other questions, but, most of them require the class name or package name.
I'd like something that doesn't need this. Maybe a method that asks for the file path "example.jar", and then it returns a list with the various class names.
By the way, I don't really now if class name is the correct term, what i need is something like this "com.name.name1".
I would use the Strings retrieved from the jar with Reflection. The result would be loading a jar dynamically without the need of any classnames.