Home | Ajax | BioInformatics | Dojo | EAI | EJB | Hibernate | J2ME | Java | Java Glossary | Java Servlets | JavaScript | Jboss | JDBC | JDO | Jmeter | JSF | JSP | JUnit | Maven | MySQL | Spring Framework | SQL | Struts | Technology | WAP | Web Services | XML


 
  
 
Programming Tutorials: Ajax | Articles | JSP | Bioinformatics | Database | Free Books | Hibernate | J2EE | J2ME | Java | JavaScript | JDBC | JMS | Linux | MS Technology | PHP | RMI | Web-Services | Servlets | Struts | UML
 

 
Facing Programming Problem?
Ask Questions?, Browse Latest Questions, Question-Answer Guidelines
Java
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments

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

                         

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 
Latest Searches:
jsp forwad
modal class code for d
string.format
j2me servlet
select tag spring
secure
loginauthentication
Autoboxing
IBM MQ series
cinema 4d
Passing Parameters in
Component class in JSF
finding max min array
phone number validatio
jbossconnectionpool
canonical path
constuctor
what is Ice Faces
Database MS Access Dat
input values from cmd
login jsp
decimal
string to character
Map
Hibernate with DAO
increment
Jigloo
datagrid servlet
is action class is sin
Registration code
jsp for loop
midi
howtocreatewarfile
SERVLET OUTPUTSTREAM
delete hyperlink in gr
pl/sql
Javascript Date and Ti
www.bebo.com
enterpriseworkbenchins
security-constraint
XMLBeans
upload image
game in java
java access query
Photoshop Photo Retouc
create and save excel
.getCurrencyInstance
helloe world servlet
jsp action tags
html tables examples
c frogram
Photoshop Effects Grun
downloading
struts-blank.war
mailmergeinword
exponencial
BUS
code for transpose of
java 2d arraylist
ASP.NET FileUploading
How to Validate a File
digital clock program
Merge Sort In Java
Matrices multiplicatio
javastring
struts.jar download
Ajax Examples
saving data from array
Photoshop Text Effect
arraylist using jsp
spaces in string
Building Accessible We
Netbeans JSF
Photoshop Effects Smok
date function java scr
netbens jsf
how to move one databa
tree
scheduler
JScrollPane
Java String toLowerCase Example
Java String toCharArray Example
Java String substring Example
Java String indexOf Example
Java String startsWith Example
Java String hashCode Example
Java String matches Example
Java String length Example
Java String lastIndexOf Example
Java String isEmpty Example
Java String equalsIgnoreCase Example
Java String equals Example
Java String endsWith Example
Java String copyValueOf Example
Java String contentEquals Example
  EAI Articles
  Java Certification
Tell A Friend
Your Friend Name
Search Tutorials

 

 
 
Browse all Java Tutorials
Java JSP Struts Servlets Hibernate XML
Ajax JDBC EJB MySQL JavaScript JSF
Maven2 Tutorial JEE5 Tutorial Java Threading Tutorial Photoshop Tutorials Linux Technology
Technology Revolutions Eclipse Spring Tutorial Bioinformatics Tutorials Tools SQL
 

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 | 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.