I think what you want to do is Serialization. I'm confused by your comment:
// Now I need to convert String s into type hello so that
// I can do this:
// (hello)s.h1;
// (hello)s.h2;
You can't just cast String objects to arbitrary class types. Maybe you can elaborate on what you're trying to accomplish here. If you want to be able to "save" a class to a file, then read it back in as an object, you want Serialization. Like this:
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
class Hello implements Serializable {
public String h1;
public String h2;
@Override
public String toString() {
return "{ h1: " + h1 + ", h2: " + h2 + " }";
}
public static void main(String[] args) throws Exception {
Hello h = new Hello();
h.h1 = "hello";
h.h2 = "world";
ObjectOutputStream outstream = new ObjectOutputStream(new FileOutputStream("hello.ser"));
outstream.writeObject(h);
System.out.println("1) h: " + h);
h = null;
System.out.println("2) h: " + h);
ObjectInputStream instream = new ObjectInputStream(new FileInputStream("hello.ser"));
h = (Hello) instream.readObject();
System.out.println("3) h: " + h);
}
}
It can get more complicated when your fields are more complex classes than String. Implementing Serializable is just a "marker" interface that says that the object can be serialized, it doesn't require any methods to be implemented. Your simple class just needs to be written out using an ObjectOutputStream and can be read back in using an ObjectInputStream.