Home Jsp Simple-jsp-example Using Log Files
Questions:Ask|Latest



Using Log Files
Posted on: March 11, 2008 By Deepak Kumar
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

        

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.


Recommend the tutorial

Ask Questions?    Discuss: Using Log Files  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 
Comments