How to Create a class dynamically with its variables and methods in Java without using Reflections.
I want that the class should be created at runtime with variables
You can use janino, which compiles a String of java code into a class. I have used it to great effect.
Also popular is Javassist.