Creating a Class Object from the Input from a JTextField.
Ryan Perlman
Greenhorn
Joined: Oct 31, 2001
Posts: 23
posted
0
Instead of going: MyClass ryan = new MyClass(); can you take the Input from a JTextField and Use it for the Object name of MyClass? If So where should I continue to look, or what other option do I have. Ryan Perlman Having fun while I am learning
Rob Ross
Bartender
Joined: Jan 07, 2002
Posts: 2205
posted
0
Yes, look at Class.forName("classname"). This returns a Class object of the type in the argument. Class myClass = Class.forName("classname") ; then Object myNewObject = myClass.newInstance().
Rob
Rob
SCJP 1.4
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: Creating a Class Object from the Input from a JTextField.