Class Formatter
- Direct Known Subclasses:
SimpleFormatter, XMLFormatter
Typically each logging Handler will have a Formatter associated with it. The Formatter takes a LogRecord and converts it to a string.
Some formatters (such as the XMLFormatter) need to wrap head and tail strings around a set of formatted records. The getHeader and getTail methods can be used to obtain these strings.
- Since:
- 1.4
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract StringFormat the given log record and return the formatted string.formatMessage(LogRecord record) Localize and format the message string from a log record.Return the header string for a set of formatted records.Return the tail string for a set of formatted records.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
Formatter
protected Formatter()Construct a new formatter.
-
-
Method Details
-
format
Format the given log record and return the formatted string.The resulting formatted String will normally include a localized and formatted version of the LogRecord's message field. It is recommended to use the
formatMessage(LogRecord)convenience method to localize and format the message field.- Parameters:
record- the log record to be formatted.- Returns:
- the formatted log record
-
getHead
-
getTail
-
formatMessage
Localize and format the message string from a log record. This method is provided as a convenience for Formatter subclasses to use when they are performing formatting.The message string is first localized to a format string using the record's ResourceBundle. (If there is no ResourceBundle, or if the message key is not found, then the key is used as the format string.) The format String uses java.text style formatting.
- If there are no parameters, no formatter is used.
- Otherwise, if the string contains "{<digit>" where <digit> is in [0-9], java.text.MessageFormat is used to format the string.
- Otherwise no formatting is performed.
- Parameters:
record- the log record containing the raw message- Returns:
- a localized and formatted message
-