Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.17 KB | None | 0 0
  1.  
  2.         Cookie cookies[] = request.getCookies();
  3.         if (cookies != null) {
  4.             for (Cookie c : cookies) {
  5.                 if (c.getName() == "userid") {
  6.                     //do something
  7.                 }
  8.             }
  9.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement