Most visited

Recently visited

Added in API level 1

UnsupportedEncodingException

public class UnsupportedEncodingException
extends IOException

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ java.io.UnsupportedEncodingException


字符编码不受支持。

Summary

Public constructors

UnsupportedEncodingException()

构造一个UnsupportedEncodingException,但不包含详细消息。

UnsupportedEncodingException(String s)

用详细消息构造一个UnsupportedEncodingException。

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

UnsupportedEncodingException

Added in API level 1
UnsupportedEncodingException ()

构造一个UnsupportedEncodingException,但不包含详细消息。

UnsupportedEncodingException

Added in API level 1
UnsupportedEncodingException (String s)

用详细消息构造一个UnsupportedEncodingException。

Parameters
s String: Describes the reason for the exception.

Hooray!