Advertisement
EugenyB

Сеанс (Session) в servlet'е

Mar 27th, 2012
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. int count;
  2. if (request.getSession().getAttribute("count") == null) {
  3.     count = 0;
  4. } else {
  5.     count = (Integer) request.getSession().getAttribute("count");
  6. }
  7. request.getSession().setAttribute("count",++count);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement