JSONObject 构造函数

定义

重载

JSONObject()

JSONObject创建无名称/值映射。

JSONObject(JSONTokener)

使用标记器中下一 JSONObject 个对象的名称/值映射创建新的名称/值映射。

JSONObject(IDictionary)

通过从给定映射复制所有名称/值映射来创建新的 JSONObject 映射。

JSONObject(String)

使用 JSON 字符串的名称/值映射创建新的 JSONObject 名称/值映射。

JSONObject(JSONObject, String[])

通过从给定对象复制列出的名称的映射来创建新的 JSONObject 映射。

JSONObject(IntPtr, JniHandleOwnership)

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

JSONObject()

JSONObject创建无名称/值映射。

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

注解

JSONObject创建无名称/值映射。

适用于 . 的 org.json.JSONObject.JSONObject()Java 文档

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

适用于

JSONObject(JSONTokener)

使用标记器中下一 JSONObject 个对象的名称/值映射创建新的名称/值映射。

[Android.Runtime.Register(".ctor", "(Lorg/json/JSONTokener;)V", "")]
public JSONObject (Org.Json.JSONTokener readFrom);
[<Android.Runtime.Register(".ctor", "(Lorg/json/JSONTokener;)V", "")>]
new Org.Json.JSONObject : Org.Json.JSONTokener -> Org.Json.JSONObject

参数

readFrom
JSONTokener

一个标记器,其 nextValue() 方法将生成一个 JSONObject

属性

例外

如果分析失败或未生成 JSONObject.

注解

使用标记器中下一 JSONObject 个对象的名称/值映射创建新的名称/值映射。

适用于 . 的 org.json.JSONObject.JSONObject(org.json.JSONTokener)Java 文档

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

适用于

JSONObject(IDictionary)

通过从给定映射复制所有名称/值映射来创建新的 JSONObject 映射。

[Android.Runtime.Register(".ctor", "(Ljava/util/Map;)V", "")]
public JSONObject (System.Collections.IDictionary copyFrom);
[<Android.Runtime.Register(".ctor", "(Ljava/util/Map;)V", "")>]
new Org.Json.JSONObject : System.Collections.IDictionary -> Org.Json.JSONObject

参数

copyFrom
IDictionary

一个映射,其键属于类型 String ,其值是受支持的类型。

属性

例外

如果映射的任何键为 null,则为 null。

注解

通过从给定映射复制所有名称/值映射来创建新的 JSONObject 映射。

适用于 . 的 org.json.JSONObject.JSONObject(java.util.Map)Java 文档

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

适用于

JSONObject(String)

使用 JSON 字符串的名称/值映射创建新的 JSONObject 名称/值映射。

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public JSONObject (string json);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Org.Json.JSONObject : string -> Org.Json.JSONObject

参数

json
String

包含对象的 JSON 编码字符串。

属性

例外

如果分析失败或未生成 JSONObject.

注解

使用 JSON 字符串的名称/值映射创建新的 JSONObject 名称/值映射。

适用于 . 的 org.json.JSONObject.JSONObject(java.lang.String)Java 文档

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

适用于

JSONObject(JSONObject, String[])

通过从给定对象复制列出的名称的映射来创建新的 JSONObject 映射。

[Android.Runtime.Register(".ctor", "(Lorg/json/JSONObject;[Ljava/lang/String;)V", "")]
public JSONObject (Org.Json.JSONObject copyFrom, string[] names);
[<Android.Runtime.Register(".ctor", "(Lorg/json/JSONObject;[Ljava/lang/String;)V", "")>]
new Org.Json.JSONObject : Org.Json.JSONObject * string[] -> Org.Json.JSONObject

参数

copyFrom
JSONObject
names
String[]
属性

例外

注解

通过从给定对象复制列出的名称的映射来创建新的 JSONObject 映射。 将跳过不存在 copyFrom 的名称。

适用于 . 的 org.json.JSONObject.JSONObject(org.json.JSONObject, java.lang.String[])Java 文档

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

适用于

JSONObject(IntPtr, JniHandleOwnership)

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

protected JSONObject (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Org.Json.JSONObject : nativeint * Android.Runtime.JniHandleOwnership -> Org.Json.JSONObject

参数

javaReference
IntPtr

nativeint

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

transfer
JniHandleOwnership

指示 JniHandleOwnership如何处理 javaReference

注解

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

适用于