Example usage for Java java.util.logging FileHandler fields, constructors, methods, implement or subclass
The text is from its open source code.
FileHandler(String pattern) Initialize a FileHandler to write to the given filename. | |
FileHandler(String pattern, boolean append) Initialize a FileHandler to write to the given filename, with optional append. | |
FileHandler() Construct a default FileHandler . | |
FileHandler(String pattern, int limit, int count) Initialize a FileHandler to write to a set of files. | |
FileHandler(String pattern, int limit, int count, boolean append) Initialize a FileHandler to write to a set of files with optional append. | |
FileHandler(String pattern, long limit, int count, boolean append) Initialize a FileHandler to write to a set of files with optional append. |
void | close() Close all the files. |
void | flush() Flush any buffered messages. |
Class> | getClass() Returns the runtime class of this Object . |
void | publish(LogRecord record) Format and publish a LogRecord . |
void | setEncoding(String encoding) Set (or change) the character encoding used by this Handler . |
void | setFormatter(Formatter newFormatter) Set a Formatter . |
void | setLevel(Level newLevel) Set the log level specifying which message levels will be logged by this Handler . |