Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

JSR 217 (Maintenance Release)

Uses of Class
java.io.UnsupportedEncodingException

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. 
 

Uses of UnsupportedEncodingException in java.io
 

Methods in java.io that throw UnsupportedEncodingException
 String ByteArrayOutputStream.toString(String enc)
          Converts the buffer's contents into a string, translating bytes into characters according to the specified character encoding.
 

Constructors in java.io that throw UnsupportedEncodingException
OutputStreamWriter(OutputStream out, String enc)
          Create an OutputStreamWriter that uses the named character encoding.
InputStreamReader(InputStream in, String enc)
          Create an InputStreamReader that uses the named character encoding.
PrintStream(OutputStream out, boolean autoFlush, String encoding)
          Create a new print stream.
 

Uses of UnsupportedEncodingException in java.lang
 

Methods in java.lang that throw UnsupportedEncodingException
 byte[] String.getBytes(String charsetName)
          Encodes this String into 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 String by decoding the specified subarray of bytes using the specified charset.
String(byte[] bytes, String charsetName)
          Constructs a new String by 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 URLEncoder.encode(String s, String enc)
          Translates a string into application/x-www-form-urlencoded format using a specific encoding scheme.
static String URLDecoder.decode(String s, String enc)
          Decodes a application/x-www-form-urlencoded string using a specific encoding scheme.
 


JSR 217 (Maintenance Release)

Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 217 specification.