InputSource 构造函数

定义

重载

InputSource()

零参数默认构造函数。

InputSource(Reader)

使用字符流创建新的输入源。

InputSource(Stream)

使用字节流创建新的输入源。

InputSource(String)

使用系统标识符创建新的输入源。

InputSource(IntPtr, JniHandleOwnership)

创建 JNI 对象的托管表示形式时使用的构造函数;由运行时调用。

InputSource()

零参数默认构造函数。

[Android.Runtime.Register(".ctor", "()V", "")]
public InputSource ();
属性

注解

零参数默认构造函数。

适用于 . 的 org.xml.sax.InputSource.InputSource()Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

另请参阅

适用于

InputSource(Reader)

使用字符流创建新的输入源。

[Android.Runtime.Register(".ctor", "(Ljava/io/Reader;)V", "")]
public InputSource (Java.IO.Reader? characterStream);
[<Android.Runtime.Register(".ctor", "(Ljava/io/Reader;)V", "")>]
new Org.Xml.Sax.InputSource : Java.IO.Reader -> Org.Xml.Sax.InputSource

参数

characterStream
Reader

包含文档的原始字符流。

属性

注解

使用字符流创建新的输入源。

应用程序编写器应使用 setSystemId() 来提供用于解析相对 URI 的基,并且可以使用 setPublicId 来包含公共标识符。

字符流不应包含字节顺序标记。

适用于 . 的 org.xml.sax.InputSource.InputSource(java.io.Reader)Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

另请参阅

适用于

InputSource(Stream)

使用字节流创建新的输入源。

[Android.Runtime.Register(".ctor", "(Ljava/io/InputStream;)V", "")]
public InputSource (System.IO.Stream? byteStream);
[<Android.Runtime.Register(".ctor", "(Ljava/io/InputStream;)V", "")>]
new Org.Xml.Sax.InputSource : System.IO.Stream -> Org.Xml.Sax.InputSource

参数

byteStream
Stream

包含文档的原始字节流。

属性

注解

使用字节流创建新的输入源。

应用程序编写器应使用 setSystemId() 来提供用于解析相对 URI 的基,可以使用 setPublicId 来包含公共标识符,并且可以使用 setEncoding 来指定对象的字符编码。

适用于 . 的 org.xml.sax.InputSource.InputSource(java.io.InputStream)Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

另请参阅

适用于

InputSource(String)

使用系统标识符创建新的输入源。

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public InputSource (string? systemId);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Org.Xml.Sax.InputSource : string -> Org.Xml.Sax.InputSource

参数

systemId
String

系统标识符(URI)。

属性

注解

使用系统标识符创建新的输入源。

应用程序也可以使用 setPublicId 包括公共标识符,或者 setEncoding 指定字符编码(如果已知)。

如果系统标识符是 URL,则必须完全解析它(可能不是相对 URL)。

适用于 . 的 org.xml.sax.InputSource.InputSource(java.lang.String)Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

另请参阅

适用于

InputSource(IntPtr, JniHandleOwnership)

创建 JNI 对象的托管表示形式时使用的构造函数;由运行时调用。

protected InputSource (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Org.Xml.Sax.InputSource : nativeint * Android.Runtime.JniHandleOwnership -> Org.Xml.Sax.InputSource

参数

javaReference
IntPtr

nativeint

IntPtr一个包含 Java 本机接口 (JNI) 对象引用。

transfer
JniHandleOwnership

指示 JniHandleOwnership如何处理 javaReference

注解

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于