Advertisement
andersonalmada

Untitled

Jun 27th, 2022
1,108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. Cookie[] cookies = request.getCookies();
  2.          
  3. if (cookies != null) {
  4.   for (Cookie aux : cookies) {
  5.     response.getWriter().append("\n" + aux.getName() + " - " + aux.getValue());
  6.   }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement