| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use UnsupportedEncodingException | |
|---|---|
| java.io | Provides for system input and output through data streams, serialization and the file system. | 
| java.lang | Provides classes that are fundamental to the design of the Java programming language. | 
| java.net | Provides the classes for implementing networking applications. | 
| java.util | Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array). | 
| java.util.logging | Provides the classes and interfaces of the JavaTM 2 platform's core logging facilities. | 
| javax.xml.bind.helpers | JAXB Provider Use Only: Provides partial default implementations for some of the javax.xml.bind interfaces. | 
| Uses of UnsupportedEncodingException in java.io | 
|---|
| Methods in java.io that throw UnsupportedEncodingException | |
|---|---|
|  String | ByteArrayOutputStream.toString(String charsetName)Converts the buffer's contents into a string by decoding the bytes using the specified charsetName. | 
| Constructors in java.io that throw UnsupportedEncodingException | |
|---|---|
| InputStreamReader(InputStream in,
                  String charsetName)Creates an InputStreamReader that uses the named charset. | |
| OutputStreamWriter(OutputStream out,
                   String charsetName)Creates an OutputStreamWriter that uses the named charset. | |
| PrintStream(File file,
            String csn)Creates a new print stream, without automatic line flushing, with the specified file and charset. | |
| PrintStream(OutputStream out,
            boolean autoFlush,
            String encoding)Creates a new print stream. | |
| PrintStream(String fileName,
            String csn)Creates a new print stream, without automatic line flushing, with the specified file name and charset. | |
| PrintWriter(File file,
            String csn)Creates a new PrintWriter, without automatic line flushing, with the specified file and charset. | |
| PrintWriter(String fileName,
            String csn)Creates a new PrintWriter, without automatic line flushing, with the specified file name and charset. | |
| Uses of UnsupportedEncodingException in java.lang | 
|---|
| Methods in java.lang that throw UnsupportedEncodingException | |
|---|---|
|  byte[] | String.getBytes(String charsetName)Encodes this Stringinto a sequence of bytes using the named
 charset, storing the result into a new byte array. | 
| Constructors in java.lang that throw UnsupportedEncodingException | |
|---|---|
| String(byte[] bytes,
       int offset,
       int length,
       String charsetName)Constructs a new Stringby decoding the specified subarray of
 bytes using the specified charset. | |
| String(byte[] bytes,
       String charsetName)Constructs a new Stringby decoding the specified array of bytes
 using the specified charset. | |
| Uses of UnsupportedEncodingException in java.net | 
|---|
| Methods in java.net that throw UnsupportedEncodingException | |
|---|---|
| static String | URLDecoder.decode(String s,
       String enc)Decodes a application/x-www-form-urlencodedstring using a specific 
 encoding scheme. | 
| static String | URLEncoder.encode(String s,
       String enc)Translates a string into application/x-www-form-urlencodedformat using a specific encoding scheme. | 
| Uses of UnsupportedEncodingException in java.util | 
|---|
| Constructors in java.util that throw UnsupportedEncodingException | |
|---|---|
| Formatter(File file,
          String csn)Constructs a new formatter with the specified file and charset. | |
| Formatter(File file,
          String csn,
          Locale l)Constructs a new formatter with the specified file, charset, and locale. | |
| Formatter(OutputStream os,
          String csn)Constructs a new formatter with the specified output stream and charset. | |
| Formatter(OutputStream os,
          String csn,
          Locale l)Constructs a new formatter with the specified output stream, charset, and locale. | |
| Formatter(String fileName,
          String csn)Constructs a new formatter with the specified file name and charset. | |
| Formatter(String fileName,
          String csn,
          Locale l)Constructs a new formatter with the specified file name, charset, and locale. | |
| Uses of UnsupportedEncodingException in java.util.logging | 
|---|
| Methods in java.util.logging that throw UnsupportedEncodingException | |
|---|---|
|  void | StreamHandler.setEncoding(String encoding)Set (or change) the character encoding used by this Handler. | 
|  void | Handler.setEncoding(String encoding)Set the character encoding used by this Handler. | 
| Uses of UnsupportedEncodingException in javax.xml.bind.helpers | 
|---|
| Methods in javax.xml.bind.helpers that throw UnsupportedEncodingException | |
|---|---|
| protected  String | AbstractMarshallerImpl.getJavaEncoding(String encoding)Gets the corresponding Java encoding name from an IANA name. | 
| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.