Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
Write Log Records to Standard Error in Java 
 

This section demonstrates how to write log records to standard error in Java.

 

Write Log Records to Standard Error in Java

                         

This section demonstrates how to write log records to standard error in Java. Java provides the facility for handling an error through the help of ConsoleHandler class. This program constructs a logger and prints or publishes log records on the standard error which is written in the log file by user. In this section section, you can learn the procedure of writing log records to standard error for displaying in the console.

Description of code:

ConsoleHandler:
This is the class of the java.util.logging package. This class is used for constructing the log file and write some log records to standard error publishing in the console. This type of error is published through the System.err which are written to log records i.e. handled by the ConsoleHandler class.

log.addHandler(Handler err)
This is the method of the Logger class which is used to add handler for receiving logging messages. This method takes a parameter which is the Handler type argument whether a console handle or any other.

Here is the code of program:

import java.util.logging.*;

public class WriteRecordsToStdError{
  public static void main(String[] args) {
    WriteRecordsToStdError r = new WriteRecordsToStdError();
  }
  public WriteRecordsToStdError(){
    ConsoleHandler err = new ConsoleHandler();
    Logger log = Logger.getLogger("");
    LogRecord rec1 = new LogRecord(Level.WARNING,"Do something here!");
    LogRecord rec2 = new LogRecord(Level.INFO,"Do something here!");
    LogRecord rec3 = new LogRecord(Level.SEVERE,"Do something here!");
    err.publish(rec1);
    err.publish(rec2);
    err.publish(rec3);
    log.addHandler(err);
  }
}

Download this example

                         

» View all related tutorials
Related Tags: c string reference io method type boolean key rmi ole this ai node oo create if boo example to contains

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.