类 Charsets


  • public class Charsets
    extends java.lang.Object
    For charsets
    • 字段概要

      字段 
      修饰符和类型 字段 说明
      static java.nio.charset.Charset ISO_8859_1
      ISO Latin Alphabet No. 1, a.k.a.
      static java.nio.charset.Charset US_ASCII
      Seven-bit ASCII, a.k.a.
      static java.nio.charset.Charset UTF_16
      Sixteen-bit UCS Transformation Format, byte order identified by an optional byte-order mark
      static java.nio.charset.Charset UTF_16BE
      Sixteen-bit UCS Transformation Format, big-endian byte order
      static java.nio.charset.Charset UTF_16LE
      Sixteen-bit UCS Transformation Format, little-endian byte order
      static java.nio.charset.Charset UTF_8
      Eight-bit UCS Transformation Format
    • 构造器概要

      构造器 
      构造器 说明
      Charsets()  
    • 方法概要

      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 字段详细资料

      • US_ASCII

        public static final java.nio.charset.Charset US_ASCII
        Seven-bit ASCII, a.k.a. ISO646-US, a.k.a. the Basic Latin block of the Unicode character set
      • ISO_8859_1

        public static final java.nio.charset.Charset ISO_8859_1
        ISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1
      • UTF_8

        public static final java.nio.charset.Charset UTF_8
        Eight-bit UCS Transformation Format
      • UTF_16BE

        public static final java.nio.charset.Charset UTF_16BE
        Sixteen-bit UCS Transformation Format, big-endian byte order
      • UTF_16LE

        public static final java.nio.charset.Charset UTF_16LE
        Sixteen-bit UCS Transformation Format, little-endian byte order
      • UTF_16

        public static final java.nio.charset.Charset UTF_16
        Sixteen-bit UCS Transformation Format, byte order identified by an optional byte-order mark
    • 构造器详细资料

      • Charsets

        public Charsets()