Java Doc for Charset.java in  » 6.0-JDK-Core » io-nio » java » nio » charset » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » io nio » java.nio.charset 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.nio.charset.Charset

Charset
abstract public class Charset implements Comparable<Charset>(Code)
A named mapping between sequences of sixteen-bit Unicode code units and sequences of bytes. This class defines methods for creating decoders and encoders and for retrieving the various names associated with a charset. Instances of this class are immutable.

This class 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. Support for new charsets can be added via the service-provider interface defined in the java.nio.charset.spi.CharsetProvider class.

All of the methods defined in this class are safe for use by multiple concurrent threads.

Charset names

Charsets are named by strings composed of the following characters:

  • The uppercase letters 'A' through 'Z' ('\u0041' through '\u005a'),
  • The lowercase letters 'a' through 'z' ('\u0061' through '\u007a'),
  • The digits '0' through '9' ('\u0030' through '\u0039'),
  • The dash character '-' ('\u002d'HYPHEN-MINUS),
  • The period character '.' ('\u002e'FULL STOP),
  • The colon character ':' ('\u003a'COLON), and
  • The underscore character '_' ('\u005f'LOW LINE).
A charset name must begin with either a letter or a digit. The empty string is not a legal charset name. Charset names are not case-sensitive; that is, case is always ignored when comparing charset names. Charset names generally follow the conventions documented in
RFC 2278: IANA Charset Registration Procedures.

Every charset has a canonical name and may also have one or more aliases. The canonical name is returned by the Charset.name() name method of this class. Canonical names are, by convention, usually in upper case. The aliases of a charset are returned by the Charset.aliases() aliases method.

Some charsets have an historical name that is defined for compatibility with previous versions of the Java platform. A charset's historical name is either its canonical name or one of its aliases. The historical name is returned by the getEncoding() methods of the java.io.InputStreamReader.getEncoding InputStreamReader and java.io.OutputStreamWriter.getEncoding OutputStreamWriter classes.

If a charset listed in the IANA Charset Registry is supported by an implementation of the Java platform then its canonical name must be the name listed in the registry. Many charsets are given more than one name in the registry, in which case the registry identifies one of the names as MIME-preferred. If a charset has more than one registry name then its canonical name must be the MIME-preferred name and the other names in the registry must be valid aliases. If a supported charset is not listed in the IANA registry then its canonical name must begin with one of the strings "X-" or "x-".

The IANA charset registry does change over time, and so the canonical name and the aliases of a particular charset may also change over time. To ensure compatibility it is recommended that no alias ever be removed from a charset, and that if the canonical name of a charset is changed then its previous canonical name be made into an alias.

Standard charsets

Every implementation of the Java platform is required to support the following standard charsets. 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.

Charset

Description

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   ISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1
UTF-8 Eight-bit UCS Transformation Format
UTF-16BE Sixteen-bit UCS Transformation Format, big-endian byte order
UTF-16LE Sixteen-bit UCS Transformation Format, little-endian byte order
UTF-16 Sixteen-bit UCS Transformation Format, byte order identified by an optional byte-order mark

The UTF-8 charset is specified by RFC 2279; the transformation format upon which it is based is specified in Amendment 2 of ISO 10646-1 and is also described in the Unicode Standard.

The UTF-16 charsets are specified by RFC 2781; the transformation formats upon which they are based are specified in Amendment 1 of ISO 10646-1 and are also described in the Unicode Standard.

The UTF-16 charsets use sixteen-bit quantities and are therefore sensitive to byte order. In these encodings the byte order of a stream may be indicated by an initial byte-order mark represented by the Unicode character '\uFEFF'. Byte-order marks are handled as follows:

  • When decoding, the UTF-16BE and UTF-16LE charsets ignore byte-order marks; when encoding, they do not write byte-order marks.

  • When decoding, the UTF-16 charset interprets a byte-order mark to indicate the byte order of the stream but defaults to big-endian if there is no byte-order mark; when encoding, it uses big-endian byte order and writes a big-endian byte-order mark.

In any case, when a byte-order mark is read at the beginning of a decoding operation it is omitted from the resulting sequence of characters. Byte order marks occuring after the first element of an input sequence are not omitted since the same code is used to represent ZERO-WIDTH NON-BREAKING SPACE.

Every instance of the Java virtual machine has a default charset, which may or may not be one of the standard charsets. The default charset is determined during virtual-machine startup and typically depends upon the locale and charset being used by the underlying operating system.

Terminology

The name of this class is taken from the terms used in RFC 2278. In that document a charset is defined as the combination of a coded character set and a character-encoding scheme.

A coded character set is a mapping between a set of abstract characters and a set of integers. US-ASCII, ISO 8859-1, JIS X 0201, and full Unicode, which is the same as ISO 10646-1, are examples of coded character sets.

A character-encoding scheme is a mapping between a coded character set and a set of octet (eight-bit byte) sequences. UTF-8, UCS-2, UTF-16, ISO 2022, and EUC are examples of character-encoding schemes. Encoding schemes are often associated with a particular coded character set; UTF-8, for example, is used only to encode Unicode. Some schemes, however, are associated with multiple character sets; EUC, for example, can be used to encode characters in a variety of Asian character sets.

When a coded character set is used exclusively with a single character-encoding scheme then the corresponding charset is usually named for the character set; otherwise a charset is usually named for the encoding scheme and, possibly, the locale of the character sets that it supports. Hence US-ASCII is the name of the charset for US-ASCII while EUC-JP is the name of the charset that encodes the JIS X 0201, JIS X 0208, and JIS X 0212 character sets.

The native character encoding of the Java programming language is UTF-16. A charset in the Java platform therefore defines a mapping between sequences of sixteen-bit UTF-16 code units and sequences of bytes.


author:
   Mark Reinhold
author:
   JSR-51 Expert Group
version:
   1.61, 07/05/19
since:
   1.4
See Also:   CharsetDecoder
See Also:   CharsetEncoder
See Also:   java.nio.charset.spi.CharsetProvider
See Also:   java.lang.Character



Constructor Summary
protected  Charset(String canonicalName, String[] aliases)
     Initializes a new charset with the given canonical name and alias set.

Method Summary
final public  Set<String>aliases()
     Returns a set containing this charset's aliases.
static  booleanatBugLevel(String bl)
    
public static  SortedMap<String, Charset>availableCharsets()
     Constructs a sorted map from canonical charset names to charset objects.

The map returned by this method will have one entry for each charset for which support is available in the current Java virtual machine.

public  booleancanEncode()
     Tells whether or not this charset supports encoding.

Nearly all charsets support encoding.

final public  intcompareTo(Charset that)
     Compares this charset to another.

Charsets are ordered by their canonical names, without regard to case.

abstract public  booleancontains(Charset cs)
     Tells whether or not this charset contains the given charset.

A charset C is said to contain a charset D if, and only if, every character representable in D is also representable in C.

final public  CharBufferdecode(ByteBuffer bb)
     Convenience method that decodes bytes in this charset into Unicode characters.

An invocation of this method upon a charset cs returns the same result as the expression

 cs.newDecoder()
 .onMalformedInput(CodingErrorAction.REPLACE)
 .onUnmappableCharacter(CodingErrorAction.REPLACE)
 .decode(bb); 
except that it is potentially more efficient because it can cache decoders between successive invocations.

This method always replaces malformed-input and unmappable-character sequences with this charset's default replacement byte array.

public static  CharsetdefaultCharset()
     Returns the default charset of this Java virtual machine.
public  StringdisplayName()
     Returns this charset's human-readable name for the default locale.

The default implementation of this method simply returns this charset's canonical name.

public  StringdisplayName(Locale locale)
     Returns this charset's human-readable name for the given locale.

The default implementation of this method simply returns this charset's canonical name.

final public  ByteBufferencode(CharBuffer cb)
     Convenience method that encodes Unicode characters into bytes in this charset.

An invocation of this method upon a charset cs returns the same result as the expression

 cs.newEncoder()
 .onMalformedInput(CodingErrorAction.REPLACE)
 .onUnmappableCharacter(CodingErrorAction.REPLACE)
 .encode(bb); 
except that it is potentially more efficient because it can cache encoders between successive invocations.

This method always replaces malformed-input and unmappable-character sequences with this charset's default replacement string.

final public  ByteBufferencode(String str)
     Convenience method that encodes a string into bytes in this charset.
final public  booleanequals(Object ob)
     Tells whether or not this object is equal to another.

Two charsets are equal if, and only if, they have the same canonical names.

public static  CharsetforName(String charsetName)
     Returns a charset object for the named charset.
final public  inthashCode()
     Computes a hashcode for this charset.
final public  booleanisRegistered()
     Tells whether or not this charset is registered in the IANA Charset Registry.
public static  booleanisSupported(String charsetName)
     Tells whether the named charset is supported.
final public  Stringname()
     Returns this charset's canonical name.
abstract public  CharsetDecodernewDecoder()
     Constructs a new decoder for this charset.
abstract public  CharsetEncodernewEncoder()
     Constructs a new encoder for this charset.
final public  StringtoString()
     Returns a string describing this charset.


Constructor Detail
Charset
protected Charset(String canonicalName, String[] aliases)(Code)
Initializes a new charset with the given canonical name and alias set.


Parameters:
  canonicalName - The canonical name of this charset
Parameters:
  aliases - An array of this charset's aliases, or null if it has no aliases
throws:
  IllegalCharsetNameException - If the canonical name or any of the aliases are illegal




Method Detail
aliases
final public Set<String> aliases()(Code)
Returns a set containing this charset's aliases.

An immutable set of this charset's aliases



atBugLevel
static boolean atBugLevel(String bl)(Code)



availableCharsets
public static SortedMap<String, Charset> availableCharsets()(Code)
Constructs a sorted map from canonical charset names to charset objects.

The map returned by this method will have one entry for each charset for which support is available in the current Java virtual machine. If two or more supported charsets have the same canonical name then the resulting map will contain just one of them; which one it will contain is not specified.

The invocation of this method, and the subsequent use of the resulting map, may cause time-consuming disk or network I/O operations to occur. This method is provided for applications that need to enumerate all of the available charsets, for example to allow user charset selection. This method is not used by the Charset.forNameforName method, which instead employs an efficient incremental lookup algorithm.

This method may return different results at different times if new charset providers are dynamically made available to the current Java virtual machine. In the absence of such changes, the charsets returned by this method are exactly those that can be retrieved via the Charset.forName forName method.

An immutable, case-insensitive map from canonical charset namesto charset objects



canEncode
public boolean canEncode()(Code)
Tells whether or not this charset supports encoding.

Nearly all charsets support encoding. The primary exceptions are special-purpose auto-detect charsets whose decoders can determine which of several possible encoding schemes is in use by examining the input byte sequence. Such charsets do not support encoding because there is no way to determine which encoding should be used on output. Implementations of such charsets should override this method to return false.

true if, and only if, this charset supports encoding



compareTo
final public int compareTo(Charset that)(Code)
Compares this charset to another.

Charsets are ordered by their canonical names, without regard to case.


Parameters:
  that - The charset to which this charset is to be compared A negative integer, zero, or a positive integer as this charsetis less than, equal to, or greater than the specified charset



contains
abstract public boolean contains(Charset cs)(Code)
Tells whether or not this charset contains the given charset.

A charset C is said to contain a charset D if, and only if, every character representable in D is also representable in C. If this relationship holds then it is guaranteed that every string that can be encoded in D can also be encoded in C without performing any replacements.

That C contains D does not imply that each character representable in C by a particular byte sequence is represented in D by the same byte sequence, although sometimes this is the case.

Every charset contains itself.

This method computes an approximation of the containment relation: If it returns true then the given charset is known to be contained by this charset; if it returns false, however, then it is not necessarily the case that the given charset is not contained in this charset. true if the given charset is contained in this charset




decode
final public CharBuffer decode(ByteBuffer bb)(Code)
Convenience method that decodes bytes in this charset into Unicode characters.

An invocation of this method upon a charset cs returns the same result as the expression

 cs.newDecoder()
 .onMalformedInput(CodingErrorAction.REPLACE)
 .onUnmappableCharacter(CodingErrorAction.REPLACE)
 .decode(bb); 
except that it is potentially more efficient because it can cache decoders between successive invocations.

This method always replaces malformed-input and unmappable-character sequences with this charset's default replacement byte array. In order to detect such sequences, use the CharsetDecoder.decode(java.nio.ByteBuffer) method directly.


Parameters:
  bb - The byte buffer to be decoded A char buffer containing the decoded characters



defaultCharset
public static Charset defaultCharset()(Code)
Returns the default charset of this Java virtual machine.

The default charset is determined during virtual-machine startup and typically depends upon the locale and charset of the underlying operating system. A charset object for the default charset
since:
   1.5




displayName
public String displayName()(Code)
Returns this charset's human-readable name for the default locale.

The default implementation of this method simply returns this charset's canonical name. Concrete subclasses of this class may override this method in order to provide a localized display name.

The display name of this charset in the default locale



displayName
public String displayName(Locale locale)(Code)
Returns this charset's human-readable name for the given locale.

The default implementation of this method simply returns this charset's canonical name. Concrete subclasses of this class may override this method in order to provide a localized display name.


Parameters:
  locale - The locale for which the display name is to be retrieved The display name of this charset in the given locale



encode
final public ByteBuffer encode(CharBuffer cb)(Code)
Convenience method that encodes Unicode characters into bytes in this charset.

An invocation of this method upon a charset cs returns the same result as the expression

 cs.newEncoder()
 .onMalformedInput(CodingErrorAction.REPLACE)
 .onUnmappableCharacter(CodingErrorAction.REPLACE)
 .encode(bb); 
except that it is potentially more efficient because it can cache encoders between successive invocations.

This method always replaces malformed-input and unmappable-character sequences with this charset's default replacement string. In order to detect such sequences, use the CharsetEncoder.encode(java.nio.CharBuffer) method directly.


Parameters:
  cb - The char buffer to be encoded A byte buffer containing the encoded characters



encode
final public ByteBuffer encode(String str)(Code)
Convenience method that encodes a string into bytes in this charset.

An invocation of this method upon a charset cs returns the same result as the expression

 cs.encode(CharBuffer.wrap(s)); 

Parameters:
  str - The string to be encoded A byte buffer containing the encoded characters



equals
final public boolean equals(Object ob)(Code)
Tells whether or not this object is equal to another.

Two charsets are equal if, and only if, they have the same canonical names. A charset is never equal to any other type of object.

true if, and only if, this charset is equal to thegiven object



forName
public static Charset forName(String charsetName)(Code)
Returns a charset object for the named charset.


Parameters:
  charsetName - The name of the requested charset; may be eithera canonical name or an alias A charset object for the named charset
throws:
  IllegalCharsetNameException - If the given charset name is illegal
throws:
  IllegalArgumentException - If the given charsetName is null
throws:
  UnsupportedCharsetException - If no support for the named charset is availablein this instance of the Java virtual machine



hashCode
final public int hashCode()(Code)
Computes a hashcode for this charset.

An integer hashcode



isRegistered
final public boolean isRegistered()(Code)
Tells whether or not this charset is registered in the IANA Charset Registry.

true if, and only if, this charset is known by itsimplementor to be registered with the IANA



isSupported
public static boolean isSupported(String charsetName)(Code)
Tells whether the named charset is supported.


Parameters:
  charsetName - The name of the requested charset; may be eithera canonical name or an alias true if, and only if, support for the named charsetis available in the current Java virtual machine
throws:
  IllegalCharsetNameException - If the given charset name is illegal
throws:
  IllegalArgumentException - If the given charsetName is null



name
final public String name()(Code)
Returns this charset's canonical name.

The canonical name of this charset



newDecoder
abstract public CharsetDecoder newDecoder()(Code)
Constructs a new decoder for this charset.

A new decoder for this charset



newEncoder
abstract public CharsetEncoder newEncoder()(Code)
Constructs a new encoder for this charset.

A new encoder for this charset
throws:
  UnsupportedOperationException - If this charset does not support encoding



toString
final public String toString()(Code)
Returns a string describing this charset.

A string describing this charset



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.