用Vector Vector temp = new Vector();temp.addElement(....);添加元素(变量,值等)temp.size();取得大小;String xx = temp.toString();转换为字符串;String[] yy = new String[temp.size()];yy = xx.split(",");转换为数组;