Uses of Class
java.io.UnsupportedEncodingException

Packages that use UnsupportedEncodingException
java.io   
java.lang   
 

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
InputStreamReader.InputStreamReader(InputStream in, String enc)
          Create an InputStreamReader that uses the named character encoding.
OutputStreamWriter.OutputStreamWriter(OutputStream out, String enc)
          Create an OutputStreamWriter that uses the named character encoding.
 

Uses of UnsupportedEncodingException in java.lang
 

Methods in java.lang that throw UnsupportedEncodingException
private static sun.io.ByteToCharConverter String.getBTCConverter(String encoding)
          Returns a ByteToCharConverter that uses the specified encoding.
private static sun.io.CharToByteConverter String.getCTBConverter(String encoding)
          Returns a CharToByteConverter that uses the specified encoding.
 byte[] String.getBytes(String enc)
          Convert this String into bytes according to the specified character encoding, storing the result into a new byte array.
 

Constructors in java.lang that throw UnsupportedEncodingException
String.String(byte[] bytes, int offset, int length, String enc)
          Construct a new String by converting the specified subarray of bytes using the specified character encoding.
String.String(byte[] bytes, String enc)
          Construct a new String by converting the specified array of bytes using the specified character encoding.