document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public void doGet(HttpServletRequest request,
  2.  HttpServletResponse response)
  3.  throws ServletException, IOException {
  4.  
  5.  response.setContentType("text/html :charset=UTF-8");
  6.  PrinterWriter out = response.getWriter();
  7.  
  8.  try{
  9.     if(request.getSession(false) == null){
  10.      
  11.       out.println("Jestes na stronie po raz pierwszy.");
  12.       request.getSession();
  13.     }else
  14.       out.println("Witaj po raz kolejny.");
  15.  }finally{
  16.     out.close();
  17.   }
  18.  
  19.  
  20.  }
');