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,

:-)

[517 byte] By [drrpbsa] at [2007-11-27 10:01:53]
# 1
why don't you create an Employee object and store it in a Vector?
suparenoa at 2007-7-13 0:36:04 > top of Java-index,Java Mobility Forums,Java ME Technologies...