Cookie coo=coos[i];
      //找到指定的Cookie
      if(coo!=null&&coo.getName().equals("visits"))
       {
         //得到计数值
         visits=Integer.parseInt(coo.getValue());
         break;
       }