因为nextToken()这方法只执行了一次啊,当然就取第一个了。如果要遍历的话
while(token.hasMoreTokens){
       System.out.println(token.nextTokens());
}