# Data Sharing The **DataShare** module allows an application to manage its own data and share data with other applications on the same device. >**NOTE** > >The initial APIs of this module are supported since API version 9. Newly added APIs will be marked with a superscript to indicate their earliest API version. ## Modules to Import ```ts import dataShare from '@ohos.data.dataShare' ``` ## dataShare.createDataShareHelper createDataShareHelper(context: Context, uri: string, callback: AsyncCallback<DataShareHelper>): void Creates a **DataShareHelper** instance. This API uses an asynchronous callback to return the result. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | -------- | -------------------------------------------------------- | ---- | ------------------------------------------------------------ | | context | [Context](js-apis-application-context.md#context) | Yes | Context of an application. | | uri | string | Yes | Uniform Resource Identifier (URI) of the server application to connect. | | callback | AsyncCallback<[DataShareHelper](#datasharehelper)> | Yes | Callback invoked to return the result. If the operation is successful, **err** is **undefined** and **data** is the **DataShareHelper** instance created. Otherwise, **err** is an error object.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); let dataShareHelper; dataShare.createDataShareHelper(this.context, uri, (err, data) => { if (err != undefined) { console.info("createDataShareHelper failed, error message : " + err); } else { console.info("createDataShareHelper succeed, data : " + data); dataShareHelper = data; } }); ``` ## dataShare.createDataShareHelper createDataShareHelper(context: Context, uri: string): Promise<DataShareHelper> Creates a **DataShareHelper** instance. This API uses a promise to return the result. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | ------- | ------------------------------------------------- | ---- | ------------------------------ | | context | [Context](js-apis-application-context.md#context) | Yes | Context of an application. | | uri | string | Yes | URI of the server application to connect.| **Return value** | Type | Description | | -------------------------------------------------- | -------------------------------------- | | Promise<[DataShareHelper](#datasharehelper)> | Promise used to return the **DataShareHelper** instance created.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); let dataShareHelper; dataShare.createDataShareHelper(this.context, uri).then((data) => { console.info("createDataShareHelper succeed, data : " + data); dataShareHelper = data; }).catch((err) => { console.info("createDataShareHelper failed, error message : " + err); }) ``` ## DataShareHelper Provides a **DataShareHelper** instance to access or manage data on the server. Before calling an API provided by **DataShareHelper**, you must create a **DataShareHelper** instance using [createDataShareHelper](#datasharecreatedatasharehelper). This API can be used only in the stage model. ### openFile openFile(uri: string, mode: string, callback: AsyncCallback<number>): void Opens a file. This API uses an asynchronous callback to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | -------- | --------------------- | ---- | ---------------------------------- | | uri | string | Yes | URI of the file to open. | | mode | string | Yes | File open mode.
**r** means to open a file for reading; **w** means to open a file for writing (erasing any data in the file); **wa** means to open a file in append mode for writing at the end of the file; **rw** means to open a file for both reading and writing.| | callback | AsyncCallback<number> | Yes | Callback invoked to return the result. If the operation is successful, **err** is **undefined** and **data** is the file descriptor. Otherwise, **err** is an error object.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); dataShareHelper.openFile(uri, "rwt", (err, data) => { if (err != undefined) { console.info("openFile failed, error message : " + err); }else { console.info("openFile succeed, data : " + data); let fd = data; } }); ``` ### openFile openFile(uri: string, mode: string): Promise<number> Opens a file. This API uses a promise to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name| Type | Mandatory| Description | | ---- | ------ | ---- | ------------------------------------------------------------ | | uri | string | Yes | URI of the file to open. | | mode | string | Yes | File open mode.
**r** means to open a file for reading; **w** means to open a file for writing (erasing any data in the file); **wa** means to open a file in append mode for writing at the end of the file; **rw** means to open a file for both reading and writing.| **Return value** | Type | Description | | --------------- | ---------------- | | Promise<number> | Promise used to return the file descriptor.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); dataShareHelper.openFile(uri, "rwt").then((data) => { console.info("openFile succeed, data : " + data); let fd = data; }).catch((err) => { console.info("openFile failed, error message : " + err); }) ``` ### on('dataChange') on(type: 'dataChange', uri: string, callback: AsyncCallback<void>): void Subscribes to changes of the specified data. After an observer is registered, the subscriber will receive a notification when the change notification is triggered (the **notifyChange()** method is called). This API uses an asynchronous callback to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | -------- | -------------------- | ---- | ------------------------ | | type | string | Yes | Event type to subscribe to. The value is **dataChange**, which indicates data change events.| | uri | string | Yes | URI of the data.| | callback | AsyncCallback<void> | Yes | Called when the change notification is triggered. In this case, **err** is **undefined**. Otherwise, it is not called or **err** is an error object.| **Example** ```ts import Ability from '@ohos.application.Ability' function onCallback() { console.info("**** Observer on callback ****"); } let uri = ("datashare:///com.samples.datasharetest.DataShare"); dataShareHelper.on("dataChange", uri, onCallback); ``` ### off('dataChange') off(type: 'dataChange', uri: string, callback?: AsyncCallback<void>): void Unsubscribes from the changes of the specified data. This API uses an asynchronous callback to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | -------- | -------------------- | ---- | ------------------------ | | type | string | Yes | Event type to unsubscribe from. The value is **dataChange**, which indicates data change events.| | uri | string | Yes | URI of the data.| | callback | AsyncCallback<void> | No | Callback used to return the result. If the operation is successful, **err** is **undefined**. Otherwise, **err** is an error object.| **Example** ```ts import Ability from '@ohos.application.Ability' function offCallback() { console.info("**** Observer off callback ****"); } let uri = ("datashare:///com.samples.datasharetest.DataShare"); dataShareHelper.off("dataChange", uri, offCallback); ``` ### insert insert(uri: string, value: ValuesBucket, callback: AsyncCallback<number>): void Inserts a single data record into the database. This API uses an asynchronous callback to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | -------- | --------------------------------------------------------- | ---- | ------------------------------------------------------------ | | uri | string | Yes | URI of the data to insert. | | value | [ValuesBucket](js-apis-data-ValuesBucket.md#valuesbucket) | Yes | Data to insert. If this parameter is empty, a blank row will be inserted. | | callback | AsyncCallback<number> | Yes | Callback invoked to return the result. If the operation is successful, **err** is **undefined** and **data** is the index of the inserted data record. Otherwise, **err** is an error object.
The data index is not returned if the APIs of the database in use, for example, the key-value database (KVDB), do not support the return of indexes.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); const valueBucket = { "name": "rose", "age": 22, "salary": 200.5, } dataShareHelper.insert(uri, valueBucket, (err, data) => { if (err != undefined) { console.log("insert failed, error message : " + err); }else{ console.log("insert succeed, data : " + data); } }); ``` ### insert insert(uri: string, value: ValuesBucket): Promise<number> Inserts a single data record into the database. This API uses a promise to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | ----- | --------------------------------------------------------- | ---- | -------------------------------------------------- | | uri | string | Yes | URI of the data to insert. | | value | [ValuesBucket](js-apis-data-ValuesBucket.md#valuesbucket) | Yes | Data to insert. If this parameter is empty, a blank row will be inserted.| **Return value** | Type | Description | | ---------------- | ------------------------------------------------------------ | | Promise<number> | Promise used to return the index of the inserted data record.
The data index is not returned if the APIs of the database in use (for example, KVDB) do not support the return of indexes.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); const valueBucket = { "name": "rose1", "age": 221, "salary": 20.5, } dataShareHelper.insert(uri, valueBucket).then((data) => { console.log("insert succeed, data : " + data); }).catch((err) => { console.log("insert failed, error message : " + err); }); ``` ### delete delete(uri: string, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback<number>): void Deletes one or more data records from the database. This API uses an asynchronous callback to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | ---------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | | uri | string | Yes | URI of the data to delete. | | predicates | [DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | Yes | Filter criteria.
The predicate methods supported by **delete()** vary depending on the database in use. For example, the KVDB supports only **inKeys**.| | callback | AsyncCallback<number> | Yes | Callback invoked to return the result. If the operation is successful, **err** is **undefined** and **data** is the number of deleted data records. Otherwise, **err** is an error object.
The number of deleted data records is not returned if the APIs of the database in use (for example, KVDB) do not support this return.| **Example** ```ts import Ability from '@ohos.application.Ability' import dataSharePredicates from '@ohos.data.dataSharePredicates' let uri = ("datashare:///com.samples.datasharetest.DataShare"); let da = new dataSharePredicates.DataSharePredicates(); da.equalTo("name", "ZhangSan"); dataShareHelper.delete(uri, da, (err, data) => { if (err != undefined) { console.log("delete failed, error message : " + err); }else{ console.log("delete succeed, data : " + data); } }); ``` ### delete delete(uri: string, predicates: dataSharePredicates.DataSharePredicates): Promise<number> Deletes one or more data records from the database. This API uses a promise to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | ---------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | | uri | string | Yes | URI of the data to delete. | | predicates | [DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | Yes | Filter criteria.
The predicate methods supported by **delete()** vary depending on the database in use. For example, the KVDB supports only **inKeys**.| **Return value** | Type | Description | | ---------------- | ------------------------------------------------------------ | | Promise<number> | Promise used to return the number of deleted data records.
The number of deleted data records is not returned if the APIs of the database in use (for example, KVDB) do not support this return.| **Example** ```ts import Ability from '@ohos.application.Ability' import dataSharePredicates from '@ohos.data.dataSharePredicates' let uri = ("datashare:///com.samples.datasharetest.DataShare"); let da = new dataSharePredicates.DataSharePredicates(); da.equalTo("name", "ZhangSan"); dataShareHelper.delete(uri, da).then((data) => { console.log("delete succeed, data : " + data); }).catch((err) => { console.log("delete failed, error message : " + err); }); ``` ### query query(uri: string, predicates: dataSharePredicates.DataSharePredicates, columns: Array<string>, callback: AsyncCallback<DataShareResultSet>): void Queries data in the database. This API uses an asynchronous callback to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | ---------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | | uri | string | Yes | URI of the data to query. | | predicates | [DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | Yes | Filter criteria.
The predicate methods supported by **query()** vary depending on the database used. For example, the KVDB supports only **inKeys** and **prefixKey**.| | columns | Array<string> | Yes | Columns to query. If this parameter is empty, all columns will be queried. | | callback | AsyncCallback<[DataShareResultSet](js-apis-data-DataShareResultSet.md#datashareresultset)> | Yes | Callback invoked to return the result. If the operation is successful, **err** is **undefined** and **data** is the result set obtained. Otherwise, **err** is an error object.| **Example** ```ts import Ability from '@ohos.application.Ability' import dataSharePredicates from '@ohos.data.dataSharePredicates' let uri = ("datashare:///com.samples.datasharetest.DataShare"); let columns = ["*"]; let da = new dataSharePredicates.DataSharePredicates(); da.equalTo("name", "ZhangSan"); dataShareHelper.query(uri, da, columns, (err, data) => { if (err != undefined) { console.log("query failed, error message : " + err); }else{ console.log("query succeed, rowCount : " + data.rowCount); } }); ``` ### query query(uri: string, predicates: dataSharePredicates.DataSharePredicates, columns: Array<string>): Promise<DataShareResultSet> Queries data in the database. This API uses a promise to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | ---------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | | uri | string | Yes | URI of the data to query. | | predicates | [DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | Yes | Filter criteria.
The predicate methods supported by **query()** vary depending on the database used. For example, the KVDB supports only **inKeys** and **prefixKey**.| | columns | Array<string> | Yes | Columns to query. If this parameter is empty, all columns will be queried. | **Return value** | Type | Description | | ------------------------------------------------------------ | --------------------------------- | | Promise<[DataShareResultSet](js-apis-data-DataShareResultSet.md#datashareresultset)> | Promise used to return the result set obtained.| **Example** ```ts import Ability from '@ohos.application.Ability' import dataSharePredicates from '@ohos.data.dataSharePredicates' let uri = ("datashare:///com.samples.datasharetest.DataShare"); let columns = ["*"]; let da = new dataSharePredicates.DataSharePredicates(); da.equalTo("name", "ZhangSan"); dataShareHelper.query(uri, da, columns).then((data) => { console.log("query succeed, rowCount : " + data.rowCount); }).catch((err) => { console.log("query failed, error message : " + err); }); ``` ### update update(uri: string, predicates: dataSharePredicates.DataSharePredicates, value: ValuesBucket, callback: AsyncCallback<number>): void Updates data in the database. This API uses an asynchronous callback to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | ---------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | | uri | string | Yes | URI of the data to update. | | predicates | [DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | Yes | Filter criteria.
The predicate methods supported by **update()** vary depending on the database in use. For example, only the relational database (RDB) supports predicates.| | value | [ValuesBucket](js-apis-data-ValuesBucket.md#valuesbucket) | Yes | New data. | | callback | AsyncCallback<number> | Yes | Callback invoked to return the result. If the operation is successful, **err** is **undefined** and **data** is the number of updated data records. Otherwise, **err** is an error object.
The number of updated data records is not returned if the APIs of the database in use (for example, KVDB) do not support this return.| **Example** ```ts import Ability from '@ohos.application.Ability' import dataSharePredicates from '@ohos.data.dataSharePredicates' let uri = ("datashare:///com.samples.datasharetest.DataShare"); let da = new dataSharePredicates.DataSharePredicates(); da.equalTo("name", "ZhangSan"); const va = { "name": "roe1", "age": 21, "salary": 20.5, } dataShareHelper.update(uri, da, va, (err, data) => { if (err != undefined) { console.log("update failed, error message : " + err); }else{ console.log("update succeed, data : " + data); } }); ``` ### update update(uri: string, predicates: dataSharePredicates.DataSharePredicates, value: ValuesBucket): Promise<number> Updates data in the database. This API uses a promise to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | ---------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | | uri | string | Yes | URI of the data to update. | | predicates | [DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | Yes | Filter criteria.
The predicate methods supported by **update()** vary depending on the database in use. For example, only the relational database (RDB) supports predicates.| | value | [ValuesBucket](js-apis-data-ValuesBucket.md#valuesbucket) | Yes | New data. | **Return value** | Type | Description | | ---------------- | ------------------------------------------------------------ | | Promise<number> | Promise used to return the number of data records updated.
The number of updated data records is not returned if the APIs of the database in use (for example, KVDB) do not support this return.| **Example** ```ts import Ability from '@ohos.application.Ability' import dataSharePredicates from '@ohos.data.dataSharePredicates' let uri = ("datashare:///com.samples.datasharetest.DataShare"); let da = new dataSharePredicates.DataSharePredicates(); da.equalTo("name", "ZhangSan"); const va = { "name": "roe1", "age": 21, "salary": 20.5, } dataShareHelper.update(uri, da, va).then((data) => { console.log("update succeed, data : " + data); }).catch((err) => { console.log("update failed, error message : " + err); }); ``` ### batchInsert batchInsert(uri: string, values: Array<ValuesBucket>, callback: AsyncCallback<number>): void Batch inserts data into the database. This API uses an asynchronous callback to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | | uri | string | Yes | URI of the data to insert. | | values | Array<[ValuesBucket](js-apis-data-ValuesBucket.md#valuesbucket)> | Yes | Data to insert. | | callback | AsyncCallback<number> | Yes | Callback invoked to return the result. If the operation is successful, **err** is **undefined** and **data** is the number of data records inserted. Otherwise, **err** is an error object.
The number of inserted data records is not returned if the APIs of the database in use (for example, KVDB) do not support this return.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); let vbs = new Array({"name": "roe11", "age": 21, "salary": 20.5,}, {"name": "roe12", "age": 21, "salary": 20.5,}, {"name": "roe13", "age": 21, "salary": 20.5,}) dataShareHelper.batchInsert(uri, vbs, (err, data) => { if (err != undefined) { console.log("batchInsert failed, error message : " + err); }else{ console.log("batchInsert succeed, data : " + data); } }); ``` ### batchInsert batchInsert(uri: string, values: Array<ValuesBucket>): Promise<number> Batch inserts data into the database. This API uses a promise to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | ------ | ------------------------------------------------------------ | ---- | ------------------------ | | uri | string | Yes | URI of the data to insert.| | values | Array<[ValuesBucket](js-apis-data-ValuesBucket.md#valuesbucket)> | Yes | Data to insert. | **Return value** | Type | Description | | ---------------- | ------------------------------------------------------------ | | Promise<number> | Promise used to return the number of data records inserted.
The number of inserted data records is not returned if the APIs of the database (for example, KVDB) in use do not the return of the number of data records.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); let vbs = new Array({"name": "roe11", "age": 21, "salary": 20.5,}, {"name": "roe12", "age": 21, "salary": 20.5,}, {"name": "roe13", "age": 21, "salary": 20.5,}) dataShareHelper.batchInsert(uri, vbs).then((data) => { console.log("batchInsert succeed, data : " + data); }).catch((err) => { console.log("batchInsert failed, error message : " + err); }); ``` ### getType getType(uri: string, callback: AsyncCallback<string>): void Obtains the Multipurpose Internet Mail Extensions (MIME) type of the specified data. This API uses an asynchronous callback to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | -------- | ---------------------- | ---- | --------------------------------------------- | | uri | string | Yes | URI of the data. | | callback | AsyncCallback<string> | Yes | Callback invoked to return the result. If the operation is successful, **err** is **undefined** and **data** is the MIME type obtained. Otherwise, **err** is an error object.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); dataShareHelper.getType(uri, (err, data)=>{ if (err != undefined) { console.log("getType failed, error message : " + err); }else{ console.log("getType succeed, data : " + data); let result = data; } }); ``` ### getType getType(uri: string): Promise<string> Obtains the MIME type of the specified data. This API uses a promise to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name| Type | Mandatory| Description | | ---- | ------ | ---- | -------------------- | | uri | string | Yes | URI of the data.| **Return value** | Type | Description | | ---------------- | ----------------------------------- | | Promise<string> | Promise used to return the MIME type obtained.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); dataShareHelper.getType(uri).then((data) => { console.log("getType succeed, data : " + data); }).catch((err) => { console.log("getType failed, error message : " + err); }); ``` ### getFileTypes getFileTypes(uri: string, mimeTypeFilter: string, callback: AsyncCallback<Array<string>>): void Obtains the supported MIME types. This API uses an asynchronous callback to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | -------------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | | uri | string | Yes | URI of the file. | | mimeTypeFilter | string | Yes | MIME types to match. Example:
**\*/\***: Obtain all supported types.
**image/\***: Obtain the MIMEs with the main type of **image**.
**\*/jpg**: Obtain the MIMEs with the subtype of **jpg**.| | callback | AsyncCallback> | Yes | Callback invoked to return the result. If the operation is successful, **err** is **undefined** and **data** is the MIME types obtained. Otherwise, **err** is an error object.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); let mimeTypeFilter = "image/*"; dataShareHelper.getFileTypes(uri, mimeTypeFilter, (err,data) => { if (err != undefined) { console.log("getFileTypes failed, error message : " + err); }else{ console.log("getFileTypes succeed, data : " + data); } }); ``` ### getFileTypes getFileTypes(uri: string, mimeTypeFilter: string): Promise<Array<string>> Obtains the supported MIME types. This API uses a promise to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | -------------- | ------ | ---- | ------------------------------------------------------------ | | uri | string | Yes | URI of the file. | | mimeTypeFilter | string | Yes | MIME types to match. Example:
**\*/\***: Obtain all supported types.
**image/\***: Obtain the MIMEs with the main type of **image**.
**\*/jpg**: Obtain the MIMEs with the subtype of **jpg**.| **Return value** | Type | Description | | ------------------------ | ------------------------ | | Promise<Array<string>> | Promise used to return the MIME types obtained.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); let mimeTypeFilter = "image/*"; dataShareHelper.getFileTypes(uri, mimeTypeFilter).then((data) => { console.log("getFileTypes succeed, data : " + data); }).catch((err) => { console.log("getFileTypes failed, error message : " + err); }); ``` ### normalizeUri normalizeUri(uri: string, callback: AsyncCallback<string>): void Normalizes a **DataShare** URI. The **DataShare** URI can be used only by the local device, but the normalized URI can be used across devices. This API uses an asynchronous callback to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | -------- | ---------------------- | ---- | -------------------------------------------------------- | | uri | string | Yes | [URI](js-apis-uri.md#uri) to normalize. | | callback | AsyncCallback<string> | Yes | Callback invoked to return the result. If the operation is successful, **err** is **undefined** and **data** is the normalized URI (if **null** is returned, URI normalization is not supported). Otherwise, **err** is an error object.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); dataShareHelper.normalizeUri(uri, (err, data) => { if (err != undefined) { console.log("normalizeUri failed, error message : " + err); }else{ console.log("normalizeUri = " + data); } }); ``` ### normalizeUri normalizeUri(uri: string): Promise<string> Normalizes a **DataShare** URI. The **DataShare** URI can be used only by the local device, but the normalized URI can be used across devices. This API uses a promise to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name| Type | Mandatory| Description | | ---- | ------ | ---- | ----------------------------------------- | | uri | string | Yes | [URI](js-apis-uri.md#uri) to normalize.| **Return value** | Type | Description | | ---------------- | ---------------------------------------------- | | Promise<string> | Promise used to return the result. If URI normalization is supported, the normalized URI is returned. Otherwise, **null** is returned.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); dataShareHelper.normalizeUri(uri).then((data) => { console.log("normalizeUri = " + data); }).catch((err) => { console.log("normalizeUri failed, error message : " + err); }); ``` ### denormalizeUri denormalizeUri(uri: string, callback: AsyncCallback<string>): void Denormalizes a URI. This API uses an asynchronous callback to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | -------- | ---------------------- | ---- | --------------------------------------------------- | | uri | string | Yes | [URI](js-apis-uri.md#uri) to denormalize.| | callback | AsyncCallback<string> | Yes | Callback invoked to return the result. If the operation is successful, **err** is **undefined** and **data** is the URI obtained. If the original URI is returned, denormalization is not required. If **null** is returned, denormalization is not supported. If the operation fails, **err** is an error object.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); dataShareHelper.denormalizeUri(uri, (err, data) => { if (err != undefined) { console.log("denormalizeUri failed, error message : " + err); }else{ console.log("denormalizeUri = " + data); } }); ``` ### denormalizeUri denormalizeUri(uri: string): Promise<string> Denormalizes a URI. This API uses a promise to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name| Type | Mandatory| Description | | ---- | ------ | ---- | ------------------------------------------- | | uri | string | Yes | [URI](js-apis-uri.md#uri) to denormalize.| **Return value** | Type | Description | | ---------------- | ----------------------------------------- | | Promise<string> | Promise used to return the result. If the denormalization is successful, the URI obtained is returned. If no operation is required, the original URI is returned. If denormalization is not supported, **null** is returned.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); dataShareHelper.denormalizeUri(uri).then((data) => { console.log("denormalizeUri = " + data); }).catch((err) => { console.log("denormalizeUri failed, error message : " + err); }); ``` ### notifyChange notifyChange(uri: string, callback: AsyncCallback<void>): void Notifies the registered observer of data changes. This API uses an asynchronous callback to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name | Type | Mandatory| Description | | -------- | -------------------- | ---- | ------------------------ | | uri | string | Yes | URI of the data.| | callback | AsyncCallback<void> | Yes | Callback invoked to return the result. If the observer is notified of the data changes, **err** is **undefined**. Otherwise, **err** is an error object.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); dataShareHelper.notifyChange(uri, () => { console.log("***** notifyChange *****"); }); ``` ### notifyChange notifyChange(uri: string): Promise<void> Notifies the registered observer of data changes. This API uses a promise to return the result. This API can be used only in the stage model. **System capability**: SystemCapability.DistributedDataManager.DataShare.Consumer **Parameters** | Name| Type | Mandatory| Description | | ---- | ------ | ---- | -------------------- | | uri | string | Yes | URI of the data.| **Return value** | Type | Description | | -------------- | --------------------- | | Promise<void> | Promise that returns no value.| **Example** ```ts import Ability from '@ohos.application.Ability' let uri = ("datashare:///com.samples.datasharetest.DataShare"); dataShareHelper.notifyChange(uri); ```