Using Log Files

Log files keeps a records of internet protocol addresses (IP), Http status, date, time, bytes sent, bytes recieved, number of clicks etc.

Using Log Files

Using Log Files

        

Log files keeps a records of internet protocol addresses (IP), Http status, date, time, bytes sent, bytes recieved, number of clicks etc.

In this program we are writing some information in log file.

 

The code of the program is given below:

 

 

<html>
  <head>
  <title>Using Log Files</title>
  </head>
  <body>
  <h1>Using Log Files</h1>
  This page is writing to a log file.
  <%
  String address =  request.getRemoteAddr();
  String file =  request.getRequestURI();
String method = request.getMethod();
  session.getServletContext().log(" User IP: " + address +  
  " Resource: " + file + "method is: " + method);
out.println("<br><br>" + "The User IP address is "+ address + "method is " + method);
  %>
  </body>
</html>

The output of the program is given below:

Download this example.