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 11 java.base.jmod - Base Module
JDK 11 java.base.jmod is the JMOD file for JDK 11 Base module.
JDK 11 Base module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.base.jmod.
JDK 11 Base module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Base module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.base.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ java/nio/charset/package-info.java
/* * Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ /** * Defines charsets, decoders, and encoders, for translating between * bytes and Unicode characters. * * <table class="striped" style="margin-left:2em; text-align:left"> * <caption style="display:none">Summary of charsets, decoders, and encoders in this package</caption> * <thead> * <tr><th scope="col">Class name</th> * <th scope="col">Description * </thead> * <tbody> * <tr><th scope="row">{@link java.nio.charset.Charset}</th> * <td>A named mapping between characters and bytes</td></tr> * <tr><th scope="row">{@link java.nio.charset.CharsetDecoder}</th> * <td>Decodes bytes into characters</td></tr> * <tr><th scope="row">{@link java.nio.charset.CharsetEncoder}</th> * <td>Encodes characters into bytes</td></tr> * <tr><th scope="row">{@link java.nio.charset.CoderResult}</th> * <td>Describes coder results</td></tr> * <tr><th scope="row">{@link java.nio.charset.CodingErrorAction}</th> * <td>Describes actions to take when coding errors are detected</td></tr> * </tbody> * </table> * * <p> A <i>charset</i> is named mapping between sequences of * sixteen-bit Unicode characters and sequences of bytes, in the sense * defined in <a * href="http://www.ietf.org/rfc/rfc2278.txt"><i>RFC 2278</i></a>. * A <i>decoder</i> is an engine which transforms bytes in a specific * charset into characters, and an <i>encoder</i> is an engine which * transforms characters into bytes. Encoders and decoders operate on * byte and character buffers. They are collectively referred to as * <i>coders</i>. * * <p> The {@link java.nio.charset.Charset} class defines methods for * creating coders for a given charset and for retrieving the various * names associated with a charset. It also defines static methods * for testing whether a particular charset is supported, for locating * charset instances by name, and for constructing a map that contains * every charset for which support is available in the current Java * virtual machine. * * <p> Most users will not use these classes directly; instead they * will use the existing charset-related constructors and methods in * the {@link java.lang.String} class, together with the existing * {@link java.io.InputStreamReader} and {@link * java.io.OutputStreamWriter} classes, all of whose implementations * have been reworked to make use of the charset facilities defined in * this package. A small number of changes have been made to the * {@link java.io.InputStreamReader} and {@link * java.io.OutputStreamWriter} classes in order to allow explicit * charset objects to be specified in the construction of instances of * those classes. * * <p> Support for new charsets can be made available via the * interface defined in the {@link * java.nio.charset.spi.CharsetProvider} class in the {@link * java.nio.charset.spi} package. * * <p> Unless otherwise noted, passing a {@code null} argument to a * constructor or method in any class or interface in this package * will cause a {@link java.lang.NullPointerException * NullPointerException} to be thrown. * * * @since 1.4 * @author Mark Reinhold * @author JSR-51 Expert Group */ package java.nio.charset;
⏎ java/nio/charset/package-info.java
Or download all of them as a single archive file:
File name: java.base-11.0.1-src.zip File size: 8740354 bytes Release date: 2018-11-04 Download
2020-05-29, 242315👍, 0💬
Popular Posts:
JDK 11 java.management.jmod is the JMOD file for JDK 11 Management module. JDK 11 Management module ...
maven-compat-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Compact module. The JAR file name may ...
The Digester package lets you configure an XML -> Java object mapping module, which triggers certain...
io.jar is a component in iText Java library to provide input/output functionalities. iText Java libr...
The Jakarta-ORO Java classes are a set of text-processing Java classes that provide Perl5 compatible...