Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 17 java.logging.jmod - Logging Module
JDK 17 java.logging.jmod is the JMOD file for JDK 17 Logging module.
JDK 17 Logging module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.logging.jmod.
JDK 17 Logging module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Logging module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\java.logging.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ java/util/logging/StreamHandler.java
/* * Copyright (c) 2000, 2021, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.util.logging; import java.io.*; import java.security.AccessController; import java.security.PrivilegedAction; import java.util.Objects; /** * Stream based logging {@code Handler}. * <p> * This is primarily intended as a base class or support class to * be used in implementing other logging {@code Handlers}. * <p> * {@code LogRecords} are published to a given {@code java.io.OutputStream}. * <p> * <b>Configuration:</b> * By default each {@code StreamHandler} is initialized using the following * {@code LogManager} configuration properties where {@code <handler-name>} * refers to the fully-qualified class name of the handler. * If properties are not defined * (or have invalid values) then the specified default values are used. * <ul> * <li> <handler-name>.level * specifies the default level for the {@code Handler} * (defaults to {@code Level.INFO}). </li> * <li> <handler-name>.filter * specifies the name of a {@code Filter} class to use * (defaults to no {@code Filter}). </li> * <li> <handler-name>.formatter * specifies the name of a {@code Formatter} class to use * (defaults to {@code java.util.logging.SimpleFormatter}). </li> * <li> <handler-name>.encoding * the name of the character set encoding to use (defaults to * the default platform encoding). </li> * </ul> * <p> * For example, the properties for {@code StreamHandler} would be: * <ul> * <li> java.util.logging.StreamHandler.level=INFO </li> * <li> java.util.logging.StreamHandler.formatter=java.util.logging.SimpleFormatter </li> * </ul> * <p> * For a custom handler, e.g. com.foo.MyHandler, the properties would be: * <ul> * <li> com.foo.MyHandler.level=INFO </li> * <li> com.foo.MyHandler.formatter=java.util.logging.SimpleFormatter </li> * </ul> * * @since 1.4 */ public class StreamHandler extends Handler { private OutputStream output; private boolean doneHeader; private volatile Writer writer; /** * Create a {@code StreamHandler}, with no current output stream. */ public StreamHandler() { // configure with specific defaults for StreamHandler super(Level.INFO, new SimpleFormatter(), null); } /** * Create a {@code StreamHandler} with a given {@code Formatter} * and output stream. * * @param out the target output stream * @param formatter Formatter to be used to format output */ public StreamHandler(OutputStream out, Formatter formatter) { // configure with default level but use specified formatter super(Level.INFO, null, Objects.requireNonNull(formatter)); setOutputStreamPrivileged(out); } /** * @see Handler#Handler(Level, Formatter, Formatter) */ StreamHandler(Level defaultLevel, Formatter defaultFormatter, Formatter specifiedFormatter) { super(defaultLevel, defaultFormatter, specifiedFormatter); } /** * Change the output stream. * <P> * If there is a current output stream then the {@code Formatter}'s * tail string is written and the stream is flushed and closed. * Then the output stream is replaced with the new output stream. * * @param out New output stream. May not be null. * @throws SecurityException if a security manager exists and if * the caller does not have {@code LoggingPermission("control")}. */ protected synchronized void setOutputStream(OutputStream out) throws SecurityException { if (out == null) { throw new NullPointerException(); } flushAndClose(); output = out; doneHeader = false; String encoding = getEncoding(); if (encoding == null) { writer = new OutputStreamWriter(output); } else { try { writer = new OutputStreamWriter(output, encoding); } catch (UnsupportedEncodingException ex) { // This shouldn't happen. The setEncoding method // should have validated that the encoding is OK. throw new Error("Unexpected exception " + ex); } } } /** * Set (or change) the character encoding used by this {@code Handler}. * <p> * The encoding should be set before any {@code LogRecords} are written * to the {@code Handler}. * * @param encoding The name of a supported character encoding. * May be null, to indicate the default platform encoding. * @throws SecurityException if a security manager exists and if * the caller does not have {@code LoggingPermission("control")}. * @throws UnsupportedEncodingException if the named encoding is * not supported. */ @Override public synchronized void setEncoding(String encoding) throws SecurityException, java.io.UnsupportedEncodingException { super.setEncoding(encoding); if (output == null) { return; } // Replace the current writer with a writer for the new encoding. flush(); if (encoding == null) { writer = new OutputStreamWriter(output); } else { writer = new OutputStreamWriter(output, encoding); } } /** * Format and publish a {@code LogRecord}. * <p> * The {@code StreamHandler} first checks if there is an {@code OutputStream} * and if the given {@code LogRecord} has at least the required log level. * If not it silently returns. If so, it calls any associated * {@code Filter} to check if the record should be published. If so, * it calls its {@code Formatter} to format the record and then writes * the result to the current output stream. * <p> * If this is the first {@code LogRecord} to be written to a given * {@code OutputStream}, the {@code Formatter}'s "head" string is * written to the stream before the {@code LogRecord} is written. * * @param record description of the log event. A null record is * silently ignored and is not published */ @Override public synchronized void publish(LogRecord record) { if (!isLoggable(record)) { return; } String msg; try { msg = getFormatter().format(record); } catch (Exception ex) { // We don't want to throw an exception here, but we // report the exception to any registered ErrorManager. reportError(null, ex, ErrorManager.FORMAT_FAILURE); return; } try { if (!doneHeader) { writer.write(getFormatter().getHead(this)); doneHeader = true; } writer.write(msg); } catch (Exception ex) { // We don't want to throw an exception here, but we // report the exception to any registered ErrorManager. reportError(null, ex, ErrorManager.WRITE_FAILURE); } } /** * Check if this {@code Handler} would actually log a given {@code LogRecord}. * <p> * This method checks if the {@code LogRecord} has an appropriate level and * whether it satisfies any {@code Filter}. It will also return false if * no output stream has been assigned yet or the LogRecord is null. * * @param record a {@code LogRecord} (may be null). * @return true if the {@code LogRecord} would be logged. * */ @Override public boolean isLoggable(LogRecord record) { if (writer == null || record == null) { return false; } return super.isLoggable(record); } /** * Flush any buffered messages. */ @Override public synchronized void flush() { if (writer != null) { try { writer.flush(); } catch (Exception ex) { // We don't want to throw an exception here, but we // report the exception to any registered ErrorManager. reportError(null, ex, ErrorManager.FLUSH_FAILURE); } } } private synchronized void flushAndClose() throws SecurityException { checkPermission(); if (writer != null) { try { if (!doneHeader) { writer.write(getFormatter().getHead(this)); doneHeader = true; } writer.write(getFormatter().getTail(this)); writer.flush(); writer.close(); } catch (Exception ex) { // We don't want to throw an exception here, but we // report the exception to any registered ErrorManager. reportError(null, ex, ErrorManager.CLOSE_FAILURE); } writer = null; output = null; } } /** * Close the current output stream. * <p> * The {@code Formatter}'s "tail" string is written to the stream before it * is closed. In addition, if the {@code Formatter}'s "head" string has not * yet been written to the stream, it will be written before the * "tail" string. * * @throws SecurityException if a security manager exists and if * the caller does not have LoggingPermission("control"). */ @Override public synchronized void close() throws SecurityException { flushAndClose(); } // Package-private support for setting OutputStream // with elevated privilege. @SuppressWarnings("removal") final void setOutputStreamPrivileged(final OutputStream out) { AccessController.doPrivileged(new PrivilegedAction<Void>() { @Override public Void run() { setOutputStream(out); return null; } }, null, LogManager.controlPermission); } }
⏎ java/util/logging/StreamHandler.java
Or download all of them as a single archive file:
File name: java.logging-17.0.5-src.zip File size: 106791 bytes Release date: 2022-09-13 Download
⇒ JDK 17 java.management.jmod - Management Module
2023-09-23, 2003👍, 0💬
Popular Posts:
JRE 8 deploy.jar is the JAR file for JRE 8 Java Control Panel and other deploy tools. JRE (Java Runt...
What Is HttpComponents httpclient-4.2.2.jar? HttpComponents httpclient-4.2.2.jar is the JAR file for...
How to download and install JDK (Java Development Kit) 5? If you want to write Java applications, yo...
What Is HttpComponents httpcore-4.2.2.jar? HttpComponents httpcore-4.2.2.jar is the JAR file for Apa...
How to download and install ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is a Java 5 J...