I have an application that has stored various classes in string form. For example, I might have this class:
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
that is stored as a string in a database. I would like to know whether this string contains a class that can compile successfully. How would I go about doing that? Is there a package for this?