Most visited

Recently visited

Added in API level 1

UTFDataFormatException

public class UTFDataFormatException
extends IOException

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


已经在数据输入流或任何实现数据输入接口的类中读取了格式错误的modified UTF-8格式的字符串。 请参阅DataInput类描述,了解修改后的UTF-8字符串的读写格式。

也可以看看:

Summary

Public constructors

UTFDataFormatException()

null作为其错误详细信息构造一个 UTFDataFormatException

UTFDataFormatException(String s)

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

Inherited methods

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

Public constructors

UTFDataFormatException

Added in API level 1
UTFDataFormatException ()

null作为其错误详细信息构造一个 UTFDataFormatException

UTFDataFormatException

Added in API level 1
UTFDataFormatException (String s)

用指定的详细信息构造一个UTFDataFormatException 字符串s可以稍后由检索getMessage()类的方法java.lang.Throwable

Parameters
s String: the detail message.

Hooray!