org.jboss.netty.util
类 CharsetUtil

java.lang.Object
  继承者 org.jboss.netty.util.CharsetUtil

public class CharsetUtil
extends java.lang.Object

Charset和相关类提供多种共同操作与常量的实用类.


字段摘要
static java.nio.charset.Charset ISO_8859_1
          ISO第一拉丁字母集,如ISO-LATIN-1
static java.nio.charset.Charset US_ASCII
          7位ASCII,如众所周知的ISO646-US或Unicode字符集的基本拉丁块
static java.nio.charset.Charset UTF_16
          字符序由一个可选字符序标记的16位utf编码
static java.nio.charset.Charset UTF_16BE
          字节序为big-endian的16位编码
static java.nio.charset.Charset UTF_16LE
          字节序为little-endian的16位编码
static java.nio.charset.Charset UTF_8
          8位UTF编码
 
方法摘要
static java.nio.charset.CharsetDecoder getDecoder(java.nio.charset.Charset charset)
          返回指定charset的本地线程缓存的CharsetDecoder.
static java.nio.charset.CharsetEncoder getEncoder(java.nio.charset.Charset charset)
          返回指定charset的本地线程缓存的CharsetEncoder.
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

字段详细信息

UTF_16

public static final java.nio.charset.Charset UTF_16
字符序由一个可选字符序标记的16位utf编码


UTF_16BE

public static final java.nio.charset.Charset UTF_16BE
字节序为big-endian的16位编码


UTF_16LE

public static final java.nio.charset.Charset UTF_16LE
字节序为little-endian的16位编码


UTF_8

public static final java.nio.charset.Charset UTF_8
8位UTF编码


ISO_8859_1

public static final java.nio.charset.Charset ISO_8859_1
ISO第一拉丁字母集,如ISO-LATIN-1


US_ASCII

public static final java.nio.charset.Charset US_ASCII
7位ASCII,如众所周知的ISO646-US或Unicode字符集的基本拉丁块

方法详细信息

getEncoder

public static java.nio.charset.CharsetEncoder getEncoder(java.nio.charset.Charset charset)
返回指定charset的本地线程缓存的CharsetEncoder.


getDecoder

public static java.nio.charset.CharsetDecoder getDecoder(java.nio.charset.Charset charset)
返回指定charset的本地线程缓存的CharsetDecoder.