Vector to array conversion
All,
I've added an array of 3 objects into a vector.
For example
static String[] str = new String[3];
str[0] = "001";
str[1] = "002";
str[2] = "003";
Object[] obj = new Object[3];
obj[0] = "jobID";
obj[1] = "status";
obj[2] = details; // String array
queue.addElement(obj);
Now i just want to read all the data from Vector having Object[3]. Out of these 3 array contents 1 is the String[] in turn. Please help...
Regards,
:-)

