用这个方法s.elementAt(1) 返回的是第二个元素. 下标是从0 开始的.
s.get(int n);就是索引值。通过索引值得到具体的值
System.out.println((String)s.get(1));