Most visited

Recently visited

Added in API level 1

DataFormatException

public class DataFormatException
extends 异常

java.lang.Object
    java.lang.Throwable
      java.lang.Exception
        java.util.zip.DataFormatException


表示发生数据格式错误。

摘要(Summary)

Public constructors

DataFormatException()

构造一个没有详细消息的DataFormatException。

DataFormatException(String s)

用指定的详细信息构造一个DataFormatException。

继承方法(Inherited methods)

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

Public constructors

DataFormatException

Added in API level 1
DataFormatException ()

构造一个没有详细消息的DataFormatException。

DataFormatException

Added in API level 1
DataFormatException (String s)

用指定的详细信息构造一个DataFormatException。 详细消息是描述此特定异常的字符串。

参数(Parameters)
s String: the String containing a detail message

Hooray!