How to convert string back to object.
807605Jun 15 2007 — edited Jun 15 2007I used the following code to convert a object to a string.
TestPro tes = new TestPro();
tes.length=20;
tes.breadth=30;
tes.height=40;
String encoded = tes.toString();
At a later point in code,i wish to convert this String back to TestPro Object.
Is it Possible ?