< prev index next >
src/java.base/share/classes/java/nio/charset/Charset.java
Print this page
*** 146,170 ****
* following standard charsets.</a> Consult the release documentation for your
* implementation to see if any other charsets are supported. The behavior
* of such optional charsets may differ between implementations.
*
* <blockquote><table width="80%" summary="Description of standard charsets">
! * <tr><th align="left">Charset</th><th align="left">Description</th></tr>
! * <tr><td valign=top>{@code US-ASCII}</td>
* <td>Seven-bit ASCII, a.k.a. {@code ISO646-US},
* a.k.a. the Basic Latin block of the Unicode character set</td></tr>
! * <tr><td valign=top><code>ISO-8859-1 </code></td>
* <td>ISO Latin Alphabet No. 1, a.k.a. {@code ISO-LATIN-1}</td></tr>
! * <tr><td valign=top>{@code UTF-8}</td>
* <td>Eight-bit UCS Transformation Format</td></tr>
! * <tr><td valign=top>{@code UTF-16BE}</td>
* <td>Sixteen-bit UCS Transformation Format,
* big-endian byte order</td></tr>
! * <tr><td valign=top>{@code UTF-16LE}</td>
* <td>Sixteen-bit UCS Transformation Format,
* little-endian byte order</td></tr>
! * <tr><td valign=top>{@code UTF-16}</td>
* <td>Sixteen-bit UCS Transformation Format,
* byte order identified by an optional byte-order mark</td></tr>
* </table></blockquote>
*
* <p> The {@code UTF-8} charset is specified by <a
--- 146,170 ----
* following standard charsets.</a> Consult the release documentation for your
* implementation to see if any other charsets are supported. The behavior
* of such optional charsets may differ between implementations.
*
* <blockquote><table width="80%" summary="Description of standard charsets">
! * <tr><th style="text-align:left">Charset</th><th style="text-align:left">Description</th></tr>
! * <tr><td style="vertical-align:top">{@code US-ASCII}</td>
* <td>Seven-bit ASCII, a.k.a. {@code ISO646-US},
* a.k.a. the Basic Latin block of the Unicode character set</td></tr>
! * <tr><td style="vertical-align:top"><code>ISO-8859-1 </code></td>
* <td>ISO Latin Alphabet No. 1, a.k.a. {@code ISO-LATIN-1}</td></tr>
! * <tr><td style="vertical-align:top">{@code UTF-8}</td>
* <td>Eight-bit UCS Transformation Format</td></tr>
! * <tr><td style="vertical-align:top">{@code UTF-16BE}</td>
* <td>Sixteen-bit UCS Transformation Format,
* big-endian byte order</td></tr>
! * <tr><td style="vertical-align:top">{@code UTF-16LE}</td>
* <td>Sixteen-bit UCS Transformation Format,
* little-endian byte order</td></tr>
! * <tr><td style="vertical-align:top">{@code UTF-16}</td>
* <td>Sixteen-bit UCS Transformation Format,
* byte order identified by an optional byte-order mark</td></tr>
* </table></blockquote>
*
* <p> The {@code UTF-8} charset is specified by <a
< prev index next >