|
|
|
General
|
Setting a Filter on a Logger Handler in Java
This section illustrates you how to set filter on a logger handler in Java. Generally, Filter is a program that provides the facility to get data if the certain conditions are satisfied otherwise don't get any data. In other words, you get data to be filt
View Rating |
|
|
General
|
Forward Log Records to Its Parent
This section describes how to forward log records to its parent. You know that a logger sends both log records (messages declared before setting the log for it's parent and log messages after setting for it's parent) to handlers, parent or ancestor. See d
View Rating |
|
|
General
|
Logging an Exception in Java
This section introduces you the concept of logging exception handling. When certain conditions are not followed or wrong then compiler shows a message which is mentioned under the specific exception.
View Rating |
|
|
General
|
Removing duplicate white spaces from a String
In this section, you will learn how to remove all white spaces from the given string by using the regular expressions. This section gives you a example for the best illustration about the way of removing all the duplicate white spaces from the given strin
View Rating |
|
|
General
|
Java Interview Questions - Page 8
Question: What is the purpose of the finally clause of a try-catch-finally statement?
Answer: The finally clause is used to provide the capability to execute code no matter whether or not an exception is thrown or caught.
View Rating |
|
|
General
|
Java Interview Questions - Page 1
Building Web Application With Ant and Deploying on Jboss 3.0
This lesson shows you how to build you web application and install on the Jboss 3.0 application server. After the completion of this lesson you will be able to compile, assemble and deploy your
View Rating |
|
|
General
|
Core Java Interview Questions
Question: What is transient variable?
Answer: Transient variable can't be serialize. For example if a variable is declared as transient in a Serializable class and the class is written to an ObjectStream, the value of the variable can't be written to the
View Rating |
|
|