Save This Page
Home » openjdk-7 » java » lang » [javadoc | source]
java.lang
class: StringCoding [javadoc | source]
java.lang.Object
   java.lang.StringCoding
Utility class for string encoding and decoding.
Method from java.lang.StringCoding Summary:
decode,   decode,   decode,   encode,   encode,   encode
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from java.lang.StringCoding Detail:
 static char[] decode(byte[] ba,
    int off,
    int len) 
 static char[] decode(String charsetName,
    byte[] ba,
    int off,
    int len) throws UnsupportedEncodingException 
 static char[] decode(Charset cs,
    byte[] ba,
    int off,
    int len) 
 static byte[] encode(char[] ca,
    int off,
    int len) 
 static byte[] encode(String charsetName,
    char[] ca,
    int off,
    int len) throws UnsupportedEncodingException 
 static byte[] encode(Charset cs,
    char[] ca,
    int off,
    int len)