js-apis-resource-manager.md 178.3 KB
Newer Older
Z
zengyawen 已提交
1
# @ohos.resourceManager (资源管理)
Z
zengyawen 已提交
2

F
fangyunzhong 已提交
3
资源管理模块,根据当前configuration:语言、区域、横竖屏、Mcc(移动国家码)和Mnc(移动网络码)、Device capability(设备类型)、Density(分辨率)提供获取应用资源信息读取接口。
4

5 6
> **说明:**
>
W
wplan1 已提交
7
> 本模块首批接口从API version 6开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
Z
zengyawen 已提交
8

Z
zengyawen 已提交
9 10

## 导入模块
Z
zengyawen 已提交
11

H
HelloCrease 已提交
12
```js
Z
zengyawen 已提交
13 14 15
import resourceManager from '@ohos.resourceManager';
```

H
huangjie 已提交
16 17
## 使用说明

H
huangjie 已提交
18
从API Version9开始,Stage模型通过context获取resourceManager对象的方式后,可直接调用其内部获取资源的接口,无需再导入包。此方式FA模型不适用,FA模型还需要先导入包,再调用[getResourceManager](#resourcemanagergetresourcemanager)接口获取资源对象。
Z
zengyawen 已提交
19
Stage模型下Context的引用方法请参考[Stage模型的Context详细介绍](../../application-models/application-context-stage.md)
H
huangjie 已提交
20

H
HelloCrease 已提交
21
```ts
22
import UIAbility from '@ohos.app.ability.UIAbility';
F
fangyunzhong 已提交
23
import window from '@ohos.window';
24 25

export default class EntryAbility extends UIAbility {
F
fangyunzhong 已提交
26
  onWindowStageCreate(windowStage: window.WindowStage) {
27 28 29
    let context = this.context;
    let resourceManager = context.resourceManager;
  }
F
fangyunzhong 已提交
30
}
H
huangjie 已提交
31 32
```

Z
zengyawen 已提交
33 34 35
## resourceManager.getResourceManager

getResourceManager(callback: AsyncCallback<ResourceManager>): void
Z
zengyawen 已提交
36 37 38

获取当前应用的资源管理对象,使用callback形式返回ResourceManager对象。

V
VictoriaGuo 已提交
39 40
**系统能力**:SystemCapability.Global.ResourceManager

Z
zt147369 已提交
41 42
**模型约束**:此接口仅可在FA模型下使用。

H
HelloCrease 已提交
43
**参数:** 
H
huangjie 已提交
44

H
HelloCrease 已提交
45 46 47
| 参数名      | 类型                                       | 必填   | 说明                            |
| -------- | ---------------------------------------- | ---- | ----------------------------- |
| callback | AsyncCallback<[ResourceManager](#resourcemanager)> | 是    | callback方式返回ResourceManager对象 |
Z
zengyawen 已提交
48

H
HelloCrease 已提交
49
**示例:** 
H
HelloCrease 已提交
50
  ```js
Z
zengyawen 已提交
51
  resourceManager.getResourceManager((error, mgr) => {
52 53 54 55 56
    if (error != null) {
      console.log("error is " + error);
      return;
    }
    mgr.getStringValue(0x1000000, (error, value) => {
Z
zengyawen 已提交
57
      if (error != null) {
58 59 60
        console.log("error is " + error);
      } else {
        let str = value;
Z
zengyawen 已提交
61
      }
62
    });
Z
zengyawen 已提交
63 64
  });
  ```
H
huangjie 已提交
65
注:示例代码中的0x1000000表示资源对应的id, 其可在编译后的文件ResourceTable.txt中找到。
Z
zengyawen 已提交
66 67 68 69 70


## resourceManager.getResourceManager

getResourceManager(bundleName: string, callback: AsyncCallback<ResourceManager>): void
Z
zengyawen 已提交
71 72 73

获取指定应用的资源管理对象,使用callback形式返回ResourceManager对象。

V
VictoriaGuo 已提交
74 75
**系统能力**:SystemCapability.Global.ResourceManager

Z
zt147369 已提交
76 77
**模型约束**:此接口仅可在FA模型下使用。

H
HelloCrease 已提交
78
**参数:** 
H
huangjie 已提交
79

H
HelloCrease 已提交
80 81 82 83
| 参数名        | 类型                                       | 必填   | 说明                            |
| ---------- | ---------------------------------------- | ---- | ----------------------------- |
| bundleName | string                                   | 是    | 指定应用的Bundle名称                 |
| callback   | AsyncCallback<[ResourceManager](#resourcemanager)> | 是    | callback方式返回ResourceManager对象 |
Z
zengyawen 已提交
84

H
HelloCrease 已提交
85
**示例:** 
H
HelloCrease 已提交
86
  ```js
Z
zengyawen 已提交
87 88 89 90 91 92 93 94
  resourceManager.getResourceManager("com.example.myapplication", (error, mgr) => {
  });
  ```


## resourceManager.getResourceManager

getResourceManager(): Promise<ResourceManager>
Z
zengyawen 已提交
95 96 97

获取当前应用的资源管理对象,使用Promise形式返回ResourceManager对象。

V
VictoriaGuo 已提交
98 99
**系统能力**:SystemCapability.Global.ResourceManager

Z
zt147369 已提交
100 101
**模型约束**:此接口仅可在FA模型下使用。

H
huangjie 已提交
102 103
**返回值:**

H
HelloCrease 已提交
104 105 106
| 类型                                       | 说明                |
| ---------------------------------------- | ----------------- |
| Promise<[ResourceManager](#resourcemanager)> | Promise方式返回资源管理对象 |
Z
zengyawen 已提交
107

H
HelloCrease 已提交
108
**示例:** 
H
HelloCrease 已提交
109
  ```js
F
fangyunzhong 已提交
110 111 112 113
  import resourceManager from '@ohos.resourceManager';
  import { BusinessError } from '@ohos.base';

  resourceManager.getResourceManager().then((mgr: resourceManager.ResourceManager) => {
114 115 116 117 118 119 120
    mgr.getStringValue(0x1000000, (error, value) => {
      if (error != null) {
        console.log("error is " + error);
      } else {
        let str = value;
      }
    });
F
fangyunzhong 已提交
121
  }).catch((error: BusinessError) => {
122
    console.log("error is " + error);
Z
zengyawen 已提交
123 124
  });
  ```
H
huangjie 已提交
125
注:示例代码中的0x1000000表示资源对应的id, 其可在编译后的文件ResourceTable.txt中找到。
Z
zengyawen 已提交
126 127 128 129 130


## resourceManager.getResourceManager

getResourceManager(bundleName: string): Promise<ResourceManager>
Z
zengyawen 已提交
131 132 133

获取指定应用的资源管理对象,使用Promise形式返回ResourceManager对象。

V
VictoriaGuo 已提交
134 135
**系统能力**:SystemCapability.Global.ResourceManager

Z
zt147369 已提交
136 137
**模型约束**:此接口仅可在FA模型下使用。

H
HelloCrease 已提交
138
**参数:** 
H
huangjie 已提交
139

H
HelloCrease 已提交
140 141 142
| 参数名        | 类型     | 必填   | 说明            |
| ---------- | ------ | ---- | ------------- |
| bundleName | string | 是    | 指定应用的Bundle名称 |
Z
zengyawen 已提交
143

H
huangjie 已提交
144 145
**返回值:**

H
HelloCrease 已提交
146 147 148
| 类型                                       | 说明                 |
| ---------------------------------------- | ------------------ |
| Promise<[ResourceManager](#resourcemanager)> | Promise方式返回的资源管理对象 |
Z
zengyawen 已提交
149

H
HelloCrease 已提交
150
**示例:** 
H
HelloCrease 已提交
151
  ```js
F
fangyunzhong 已提交
152 153 154 155 156
  import resourceManager from '@ohos.resourceManager';
  import { BusinessError } from '@ohos.base';

  resourceManager.getResourceManager("com.example.myapplication").then((mgr: resourceManager.ResourceManager) => {
  }).catch((error: BusinessError) => {
Z
zengyawen 已提交
157 158 159
  });
  ```

160
## resourceManager.getSystemResourceManager<sup>10+</sup>
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184

getSystemResourceManager(): ResourceManager

获取系统资源管理对象,返回系统资源的ResourceManager对象。

**系统能力**:SystemCapability.Global.ResourceManager

**返回值:**

| 类型                                       | 说明                 |
| ---------------------------------------- | ------------------ |
| Resourcemanager | 返回系统资源的管理对象 |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001009  | If application can't access system resource.                       |

**示例:**
  ```js
import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
185
import { BusinessError } from '@ohos.base';
186

187
  try {
188
    let systemResourceManager = resourceManager.getSystemResourceManager();
F
fangyunzhong 已提交
189
    systemResourceManager.getStringValue($r('sys.string.ohos_lab_vibrate').id).then((value: string) => {
190
      let str = value;
F
fangyunzhong 已提交
191
    }).catch((error: BusinessError) => {
192
      console.log("systemResourceManager getStringValue promise error is " + error);
193
    });
194
  } catch (error) {
F
fangyunzhong 已提交
195 196 197
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`systemResourceManager getStringValue failed, error code: ${code}, message: ${message}.`);
198
  }
199 200 201
  ```


Z
zengyawen 已提交
202
## Direction
Z
zengyawen 已提交
203 204 205

用于表示设备屏幕方向。

H
HelloCrease 已提交
206
**系统能力**:SystemCapability.Global.ResourceManager
H
HelloCrease 已提交
207

H
huangjie 已提交
208
| 名称                   | 值  | 说明   |
H
HelloCrease 已提交
209 210 211
| -------------------- | ---- | ---- |
| DIRECTION_VERTICAL   | 0    | 竖屏   |
| DIRECTION_HORIZONTAL | 1    | 横屏   |
Z
zengyawen 已提交
212 213 214


## DeviceType
Z
zengyawen 已提交
215 216 217

用于表示当前设备类型。

H
HelloCrease 已提交
218
**系统能力**:SystemCapability.Global.ResourceManager
H
HelloCrease 已提交
219

H
huangjie 已提交
220
| 名称                   | 值  | 说明   |
H
HelloCrease 已提交
221 222 223 224 225
| -------------------- | ---- | ---- |
| DEVICE_TYPE_TABLET   | 0x01 | 平板   |
| DEVICE_TYPE_CAR      | 0x02 | 汽车   |
| DEVICE_TYPE_TV       | 0x04 | 电视   |
| DEVICE_TYPE_WEARABLE | 0x06 | 穿戴   |
Z
zengyawen 已提交
226 227 228


## ScreenDensity
Z
zengyawen 已提交
229 230 231

用于表示当前设备屏幕密度。

H
HelloCrease 已提交
232
**系统能力**:SystemCapability.Global.ResourceManager
H
HelloCrease 已提交
233

H
huangjie 已提交
234
| 名称             | 值  | 说明         |
H
HelloCrease 已提交
235 236 237 238 239 240 241
| -------------- | ---- | ---------- |
| SCREEN_SDPI    | 120  | 小规模的屏幕密度   |
| SCREEN_MDPI    | 160  | 中规模的屏幕密度   |
| SCREEN_LDPI    | 240  | 大规模的屏幕密度   |
| SCREEN_XLDPI   | 320  | 特大规模的屏幕密度  |
| SCREEN_XXLDPI  | 480  | 超大规模的屏幕密度  |
| SCREEN_XXXLDPI | 640  | 超特大规模的屏幕密度 |
Z
zengyawen 已提交
242 243 244


## Configuration
Z
zengyawen 已提交
245 246 247

表示当前设备的状态。

H
HelloCrease 已提交
248
**系统能力**:SystemCapability.Global.ResourceManager
H
HelloCrease 已提交
249

H
huangjie 已提交
250
**参数:** 
Z
zengyawen 已提交
251

H
huangjie 已提交
252
| 名称        | 类型                    | 可读   | 可写   | 说明       |
H
HelloCrease 已提交
253 254 255
| --------- | ----------------------- | ---- | ---- | -------- |
| direction | [Direction](#direction) | 是    | 否    | 当前设备屏幕方向 |
| locale    | string                  | 是    | 否    | 当前系统语言   |
Z
zengyawen 已提交
256 257 258


## DeviceCapability
Z
zengyawen 已提交
259 260 261

表示设备支持的能力。

H
HelloCrease 已提交
262
**系统能力**:SystemCapability.Global.ResourceManager
H
HelloCrease 已提交
263

H
huangjie 已提交
264
**参数:**
Z
zengyawen 已提交
265

H
huangjie 已提交
266
| 名称            | 类型                            | 可读   | 可写   | 说明       |
H
HelloCrease 已提交
267 268 269
| ------------- | ------------------------------- | ---- | ---- | -------- |
| screenDensity | [ScreenDensity](#screendensity) | 是    | 否    | 当前设备屏幕密度 |
| deviceType    | [DeviceType](#devicetype)       | 是    | 否    | 当前设备类型   |
Z
zengyawen 已提交
270 271


W
wplan1 已提交
272 273
## RawFileDescriptor<sup>8+</sup>

H
HelloCrease 已提交
274 275 276
表示rawfile的descriptor信息。

**系统能力:** SystemCapability.Global.ResourceManager
W
wplan1 已提交
277

H
huangjie 已提交
278 279 280 281
**参数:**

| 名称     | 类型    | 可读   | 可写  | 说明           |
| ------ | ------  | ---- | ---- | ------------------ |
H
huangjie 已提交
282
| fd     | number  | 是    | 否 | rawfile所在hap的文件描述符 |
H
huangjie 已提交
283 284
| offset | number  | 是    | 否 | rawfile的起始偏移量      |
| length | number  | 是    | 否 | rawfile的文件长度       |
W
wplan1 已提交
285

286
## Resource<sup>9+</sup>
287 288 289 290 291

表示的资源信息。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Global.ResourceManager

H
huangjie 已提交
292 293 294 295 296 297 298
**参数:**

| 名称         | 类型     | 可读   | 可写  |说明          |
| ---------- | ------ | ----- | ----  | ---------------|
| bundleName | string | 是    | 否 | 应用的bundle名称 |
| moduleName | string | 是    | 否 | 应用的module名称 |
| id         | number | 是    | 否 | 资源的id值      |
299

W
wplan1 已提交
300

Z
zengyawen 已提交
301
## ResourceManager
Z
zengyawen 已提交
302 303 304

提供访问应用资源的能力。

305 306
> **说明:**
>
Z
zengyawen 已提交
307
> - ResourceManager涉及到的方法,仅限基于TS扩展的声明式开发范式使用。
H
HelloCrease 已提交
308
>
Z
zengyawen 已提交
309 310
> - 资源文件在工程的resources目录中定义,id可通过$r(资源地址).id的方式获取,例如$r('app.string.test').id。

311
### getStringSync<sup>9+</sup>
Z
zengyawen 已提交
312

313
getStringSync(resId: number): string
Z
zengyawen 已提交
314

315
用户获取指定资源ID对应的字符串,使用同步方式返回字符串。
Z
zengyawen 已提交
316

V
VictoriaGuo 已提交
317 318
**系统能力**:SystemCapability.Global.ResourceManager

H
HelloCrease 已提交
319
**参数:** 
H
huangjie 已提交
320

321 322 323 324 325 326 327 328 329
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |

**返回值:**

| 类型     | 说明          |
| ------ | ----------- |
| string | 资源ID值对应的字符串 |
Z
zengyawen 已提交
330

H
huangjie 已提交
331 332 333 334 335 336
**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
337 338 339
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
340

341
**示例:** 
H
HelloCrease 已提交
342
  ```ts
F
fangyunzhong 已提交
343 344
  import { BusinessError } from '@ohos.base';

345 346 347
  try {
    this.context.resourceManager.getStringSync($r('app.string.test').id);
  } catch (error) {
F
fangyunzhong 已提交
348 349 350
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getStringSync failed, error code: ${code}, message: ${message}.`);
351
  }
Z
zengyawen 已提交
352 353
  ```

354
### getStringSync<sup>10+</sup>
Z
zengyawen 已提交
355

356
getStringSync(resId: number, ...args: Array<string | number>): string
Z
zengyawen 已提交
357

358
用户获取指定资源ID对应的字符串,根据args参数进行格式化,使用同步方式返回相应字符串。
Z
zengyawen 已提交
359

V
VictoriaGuo 已提交
360 361
**系统能力**:SystemCapability.Global.ResourceManager

H
HelloCrease 已提交
362
**参数:** 
H
huangjie 已提交
363

H
HelloCrease 已提交
364 365 366
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |
367
| args | Array<string \| number> | 否    | 格式化字符串资源参数 <br> 支持参数类型:<br /> %d、%f、%s、%% <br> 说明:%%转译符,转译%<br>举例:%%d格式化后为%d字符串|
Z
zengyawen 已提交
368

H
huangjie 已提交
369 370
**返回值:**

371 372 373
| 类型     | 说明          |
| ------ | ---------------------------- |
| string | 资源ID值对应的格式化字符串|
Z
zengyawen 已提交
374

H
huangjie 已提交
375 376
**错误码:**

377 378
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)

H
huangjie 已提交
379
| 错误码ID | 错误信息 |
380 381 382 383 384
| -------- | ----------------------------------------------- |
| 9001001  | If the resId invalid.                               |
| 9001002  | If the resource not found by resId.                 |
| 9001006  | If the resource re-ref too much.                    |
| 9001007  | If the resource obtained by resId formatting error. |
H
huangjie 已提交
385

H
HelloCrease 已提交
386
**示例:** 
H
HelloCrease 已提交
387
  ```ts
F
fangyunzhong 已提交
388 389
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
390
  try {
391
    this.context.resourceManager.getStringSync($r('app.string.test').id, "format string", 10, 98.78);
H
huangjie 已提交
392
  } catch (error) {
F
fangyunzhong 已提交
393 394 395
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getStringSync failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
396
  }
Z
zengyawen 已提交
397 398
  ```

399
### getStringSync<sup>9+</sup>
Z
zengyawen 已提交
400

401
getStringSync(resource: Resource): string
402

403
用户获取指定resource对象对应的字符串,使用同步方式返回字符串。
404 405 406

**系统能力**:SystemCapability.Global.ResourceManager

Z
zt147369 已提交
407 408
**模型约束**:此接口仅可在Stage模型下使用。

409
**参数:** 
H
huangjie 已提交
410

411 412 413 414 415 416 417 418 419
| 参数名      | 类型                     | 必填   | 说明   |
| -------- | ---------------------- | ---- | ---- |
| resource | [Resource](#resource9) | 是    | 资源信息 |

**返回值:**

| 类型     | 说明               |
| ------ | ---------------- |
| string | resource对象对应的字符串 |
420

H
huangjie 已提交
421 422
**错误码:**

423 424
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)

H
huangjie 已提交
425 426
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
427 428 429
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
430

431
**示例:** 
H
HelloCrease 已提交
432
  ```ts
F
fangyunzhong 已提交
433
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
434
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
435 436

  let resource: resourceManager.Resource = {
437 438 439
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.string.test').id
440
  };
H
huangjie 已提交
441
  try {
442
    this.context.resourceManager.getStringSync(resource);
H
huangjie 已提交
443
  } catch (error) {
F
fangyunzhong 已提交
444 445 446
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getStringSync failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
447
  }
448 449
  ```

450
### getStringSync<sup>10+</sup>
451

452
getStringSync(resource: Resource, ...args: Array<string | number>): string
453

454
用户获取指定resource对象对应的字符串,根据args参数进行格式化,使用同步方式返回相应字符串。
455 456 457

**系统能力**:SystemCapability.Global.ResourceManager

Z
zt147369 已提交
458 459
**模型约束**:此接口仅可在Stage模型下使用。

460
**参数:** 
H
huangjie 已提交
461

H
HelloCrease 已提交
462 463
| 参数名      | 类型                     | 必填   | 说明   |
| -------- | ---------------------- | ---- | ---- |
464
| resource | [Resource](#resource9) | 是    | 资源信息 |
465
| args | Array<string \| number> | 否    | 格式化字符串资源参数 <br> 支持参数类型:<br /> %d、%f、%s、%% <br> 说明:%%转译符,转译%<br>举例:%%d格式化后为%d字符串|
466

H
huangjie 已提交
467
**返回值:**
H
huangjie 已提交
468

469 470 471
| 类型     | 说明          |
| ------ | ---------------------------- |
| string | resource对象对应的格式化字符串|
472

H
huangjie 已提交
473 474
**错误码:**

475 476
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)

H
huangjie 已提交
477 478
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
479 480 481
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
| 9001006  | If the resource re-ref too much.            |
482
| 9001007  | If the resource obtained by resId formatting error. |
H
huangjie 已提交
483

484
**示例:** 
H
HelloCrease 已提交
485
  ```ts
F
fangyunzhong 已提交
486
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
487
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
488 489

  let resource: resourceManager.Resource = {
490 491 492
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.string.test').id
493
  };
H
huangjie 已提交
494
  try {
495
    this.context.resourceManager.getStringSync(resource, "format string", 10, 98.78);
H
huangjie 已提交
496
  } catch (error) {
F
fangyunzhong 已提交
497 498 499
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getStringSync failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
500
  }
501
 ```
Z
zengyawen 已提交
502

503
### getStringByNameSync<sup>9+</sup>
H
huangjie 已提交
504

505
getStringByNameSync(resName: string): string
Z
zengyawen 已提交
506

507
用户获取指定资源名称对应的字符串,使用同步方式返回字符串。
Z
zengyawen 已提交
508

V
VictoriaGuo 已提交
509 510
**系统能力**:SystemCapability.Global.ResourceManager

H
HelloCrease 已提交
511
**参数:** 
H
huangjie 已提交
512

513 514 515 516 517 518 519 520 521
| 参数名     | 类型     | 必填   | 说明   |
| ------- | ------ | ---- | ---- |
| resName | string | 是    | 资源名称 |

**返回值:**

| 类型     | 说明         |
| ------ | ---------- |
| string | 资源名称对应的字符串 |
Z
zengyawen 已提交
522

H
huangjie 已提交
523 524
**错误码:**

525 526
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
527 528
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
529 530
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
H
huangjie 已提交
531
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
532

H
HelloCrease 已提交
533
**示例:** 
H
HelloCrease 已提交
534
  ```ts
F
fangyunzhong 已提交
535 536
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
537
  try {
538
    this.context.resourceManager.getStringByNameSync("test");
H
huangjie 已提交
539
  } catch (error) {
F
fangyunzhong 已提交
540 541 542
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getStringByNameSync failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
543
  }
Z
zengyawen 已提交
544 545
  ```

546
### getStringByNameSync<sup>10+</sup>
Z
zengyawen 已提交
547

548
getStringByNameSync(resName: string, ...args: Array<string | number>): string
Z
zengyawen 已提交
549

550
用户获取指定资源名称对应的字符串,根据args参数进行格式化,使用同步方式返回相应字符串。
Z
zengyawen 已提交
551

V
VictoriaGuo 已提交
552 553
**系统能力**:SystemCapability.Global.ResourceManager

H
HelloCrease 已提交
554
**参数:** 
H
huangjie 已提交
555

556 557 558 559
| 参数名     | 类型     | 必填   | 说明   |
| ------- | ------ | ---- | ---- |
| resName | string | 是    | 资源名称 |
| args | Array<string \| number> | 否    | 格式化字符串资源参数 <br> 支持参数类型:<br /> %d、%f、%s、%% <br> 说明:%%转译符,转译%<br>举例:%%d格式化后为%d字符串|
Z
zengyawen 已提交
560

H
huangjie 已提交
561 562
**返回值:**

563 564 565
| 类型     | 说明          |
| ------ | ---------------------------- |
| string | 资源名称对应的格式化字符串|
Z
zengyawen 已提交
566

H
huangjie 已提交
567 568
**错误码:**

569 570
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
571 572
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
573 574
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
H
huangjie 已提交
575
| 9001006  | If the resource re-ref too much.            |
576
| 9001008  | If the resource obtained by resName formatting error. |
H
huangjie 已提交
577

H
HelloCrease 已提交
578
**示例:** 
H
HelloCrease 已提交
579
  ```ts
F
fangyunzhong 已提交
580 581
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
582
  try {
583
    this.context.resourceManager.getStringByNameSync("test", "format string", 10, 98.78);
H
huangjie 已提交
584
  } catch (error) {
F
fangyunzhong 已提交
585 586 587
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getStringByNameSync failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
588
  }
589
 ```
Z
zengyawen 已提交
590

591
### getStringValue<sup>9+</sup>
592

593
getStringValue(resId: number, callback: AsyncCallback&lt;string&gt;): void
594

595
用户获取指定资源ID对应的字符串,使用callback形式返回字符串。
596 597 598 599

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
600

601 602 603 604
| 参数名      | 类型                          | 必填   | 说明              |
| -------- | --------------------------- | ---- | --------------- |
| resId    | number                      | 是    | 资源ID值           |
| callback | AsyncCallback&lt;string&gt; | 是    | 异步回调,用于返回获取的字符串 |
605

H
huangjie 已提交
606 607
**错误码:**

608 609
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
610 611
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
612 613 614
| 9001001  | If the module resId invalid.             |
| 9001002  | If the resource not found by resId.      |
| 9001006  | If the resource re-ref too much.         |
H
huangjie 已提交
615

616
**示例Stage:** 
H
HelloCrease 已提交
617
  ```ts
F
fangyunzhong 已提交
618 619
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
620
  try {
621
    this.context.resourceManager.getStringValue($r('app.string.test').id, (error, value) => {
622
      if (error != null) {
623
        console.log("error is " + error);
624
      } else {
625
        let str = value;
626
      }
H
huangjie 已提交
627 628
    });
  } catch (error) {
F
fangyunzhong 已提交
629 630 631
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getStringValue failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
632
  }
633 634
  ```

635
### getStringValue<sup>9+</sup>
636

637
getStringValue(resId: number): Promise&lt;string&gt;
638

639
用户获取指定资源ID对应的字符串,使用Promise形式返回字符串。
640 641 642 643

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
644

645 646 647
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |
H
huangjie 已提交
648

649 650 651 652 653
**返回值:**

| 类型                    | 说明          |
| --------------------- | ----------- |
| Promise&lt;string&gt; | 资源ID值对应的字符串 |
654

H
huangjie 已提交
655 656
**错误码:**

657 658
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
659 660
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
661 662 663
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
664

665
**示例:** 
H
HelloCrease 已提交
666
  ```ts
F
fangyunzhong 已提交
667 668
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
669
  try {
F
fangyunzhong 已提交
670
    this.context.resourceManager.getStringValue($r('app.string.test').id).then((value: string) => {
671
      let str = value;
F
fangyunzhong 已提交
672
    }).catch((error: BusinessError) => {
673
      console.log("getStringValue promise error is " + error);
H
huangjie 已提交
674 675
    });
  } catch (error) {
F
fangyunzhong 已提交
676 677 678
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getStringValue failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
679
  }
680
  ```
Z
zengyawen 已提交
681

682
### getStringValue<sup>9+</sup>
H
huangjie 已提交
683

684
getStringValue(resource: Resource, callback: AsyncCallback&lt;string&gt;): void
Z
zengyawen 已提交
685

686
用户获取指定resource对象对应的字符串,使用callback形式返回字符串。
Z
zengyawen 已提交
687

V
VictoriaGuo 已提交
688 689
**系统能力**:SystemCapability.Global.ResourceManager

690 691
**模型约束**:此接口仅可在Stage模型下使用。

H
HelloCrease 已提交
692
**参数:** 
H
huangjie 已提交
693

694 695 696 697
| 参数名      | 类型                          | 必填   | 说明              |
| -------- | --------------------------- | ---- | --------------- |
| resource | [Resource](#resource9)      | 是    | 资源信息            |
| callback | AsyncCallback&lt;string&gt; | 是    | 异步回调,用于返回获取的字符串 |
Z
zengyawen 已提交
698

H
huangjie 已提交
699 700
**错误码:**

701 702
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
703 704
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
705 706
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
707
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
708

H
HelloCrease 已提交
709
**示例:** 
H
HelloCrease 已提交
710
  ```ts
F
fangyunzhong 已提交
711
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
712
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
713 714

  let resource: resourceManager.Resource = {
715 716 717 718
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.string.test').id
  };
H
huangjie 已提交
719
  try {
720 721 722 723 724 725
    this.context.resourceManager.getStringValue(resource, (error, value) => {
      if (error != null) {
        console.log("error is " + error);
      } else {
        let str = value;
      }
H
huangjie 已提交
726 727
    });
  } catch (error) {
F
fangyunzhong 已提交
728 729 730
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getStringValue failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
731
  }
Z
zengyawen 已提交
732 733
  ```

734
### getStringValue<sup>9+</sup>
Z
zt147369 已提交
735

736
getStringValue(resource: Resource): Promise&lt;string&gt;
Z
zt147369 已提交
737

738
用户获取指定resource对象对应的字符串,使用Promise形式返回字符串。
Z
zt147369 已提交
739 740 741

**系统能力**:SystemCapability.Global.ResourceManager

742
**模型约束**:此接口仅可在Stage模型下使用。
Z
zt147369 已提交
743

744 745 746 747 748 749 750 751 752 753 754
**参数:**

| 参数名      | 类型                     | 必填   | 说明   |
| -------- | ---------------------- | ---- | ---- |
| resource | [Resource](#resource9) | 是    | 资源信息 |

**返回值:**

| 类型                    | 说明               |
| --------------------- | ---------------- |
| Promise&lt;string&gt; | resource对象对应的字符串 |
Z
zt147369 已提交
755 756 757

**错误码:**

758 759
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

Z
zt147369 已提交
760 761 762 763
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
764
| 9001006  | If the resource re-ref too much.            |
Z
zt147369 已提交
765 766 767

**示例:** 
  ```ts
F
fangyunzhong 已提交
768 769 770 771
  import resourceManager from '@ohos.resourceManager';
  import { BusinessError } from '@ohos.base';

  let resource: resourceManager.Resource = {
772 773 774 775
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.string.test').id
  };
Z
zt147369 已提交
776
  try {
F
fangyunzhong 已提交
777
    this.context.resourceManager.getStringValue(resource).then((value: string) => {
778
      let str = value;
F
fangyunzhong 已提交
779
    }).catch((error: BusinessError) => {
780
      console.log("getStringValue promise error is " + error);
Z
zt147369 已提交
781 782
    });
  } catch (error) {
F
fangyunzhong 已提交
783 784 785
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getStringValue failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
786 787
  }
  ```
Z
zengyawen 已提交
788

789
### getStringByName<sup>9+</sup>
Z
zengyawen 已提交
790

791
getStringByName(resName: string, callback: AsyncCallback&lt;string&gt;): void
Z
zengyawen 已提交
792

793
用户获取指定资源名称对应的字符串,使用callback形式返回字符串。
Z
zengyawen 已提交
794

V
VictoriaGuo 已提交
795 796
**系统能力**:SystemCapability.Global.ResourceManager

797
**参数:**
H
huangjie 已提交
798

799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815
| 参数名      | 类型                          | 必填   | 说明              |
| -------- | --------------------------- | ---- | --------------- |
| resName  | string                      | 是    | 资源名称            |
| callback | AsyncCallback&lt;string&gt; | 是    | 异步回调,用于返回获取的字符串 |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
| 9001006  | If the resource re-ref too much.            |

**示例:**
  ```ts
F
fangyunzhong 已提交
816 817
  import { BusinessError } from '@ohos.base';

818 819 820 821 822 823 824 825 826
  try {
    this.context.resourceManager.getStringByName("test", (error, value) => {
      if (error != null) {
        console.log("error is " + error);
      } else {
        let str = value;
      }
    });
  } catch (error) {
F
fangyunzhong 已提交
827 828 829
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getStringByName failed, error code: ${code}, message: ${message}.`);
830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845
  }
  ```

### getStringByName<sup>9+</sup>

getStringByName(resName: string): Promise&lt;string&gt;

用户获取指定资源名称对应的字符串,使用Promise形式返回字符串。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:**

| 参数名     | 类型     | 必填   | 说明   |
| ------- | ------ | ---- | ---- |
| resName | string | 是    | 资源名称 |
Z
zengyawen 已提交
846

H
huangjie 已提交
847 848
**返回值:**

849 850 851
| 类型                    | 说明         |
| --------------------- | ---------- |
| Promise&lt;string&gt; | 资源名称对应的字符串 |
Z
zengyawen 已提交
852

H
huangjie 已提交
853 854
**错误码:**

855 856
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
857 858
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
859 860 861
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
862

863
**示例:**
H
HelloCrease 已提交
864
  ```ts
F
fangyunzhong 已提交
865 866
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
867
  try {
F
fangyunzhong 已提交
868
    this.context.resourceManager.getStringByName("test").then((value: string) => {
869
      let str = value;
F
fangyunzhong 已提交
870
    }).catch((error: BusinessError) => {
871 872
      console.log("getStringByName promise error is " + error);
    });
H
huangjie 已提交
873
  } catch (error) {
F
fangyunzhong 已提交
874 875 876
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getStringByName failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
877
  }
Z
zengyawen 已提交
878 879
  ```

880
### getStringArrayValueSync<sup>10+</sup>
Z
zt147369 已提交
881

882
getStringArrayValueSync(resId: number): Array&lt;string&gt;
Z
zt147369 已提交
883

884
用户获取指定资源ID对应的字符串数组,使用同步方式返回字符串数组。
Z
zt147369 已提交
885 886 887 888 889 890 891 892 893 894 895

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 

| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |

**返回值:**

896 897 898
| 类型                    | 说明          |
| --------------------- | ----------- |
| Array&lt;string&gt; | 资源ID值对应的字符串数组 |
Z
zt147369 已提交
899 900 901

**错误码:**

902 903
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

Z
zt147369 已提交
904 905 906 907
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
908
| 9001006  | If the resource re-ref too much.            |
Z
zt147369 已提交
909 910 911

**示例:** 
  ```ts
F
fangyunzhong 已提交
912 913
  import { BusinessError } from '@ohos.base';

Z
zt147369 已提交
914
  try {
915
    this.context.resourceManager.getStringArrayValueSync($r('app.strarray.test').id);
Z
zt147369 已提交
916
  } catch (error) {
F
fangyunzhong 已提交
917 918 919
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getStringArrayValueSync failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
920 921 922
  }
  ```

923
### getStringArrayValueSync<sup>10+</sup>
924

925
getStringArrayValueSync(resource: Resource): Array&lt;string&gt;
926

927
用户获取指定resource对象对应的字符串数组,使用同步方式返回字符串数组。
928 929 930

**系统能力**:SystemCapability.Global.ResourceManager

Z
zt147369 已提交
931 932
**模型约束**:此接口仅可在Stage模型下使用。

933
**参数:** 
H
huangjie 已提交
934

935 936 937 938 939 940 941 942 943
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resource | [Resource](#resource9) | 是    | 资源信息 |

**返回值:**

| 类型                    | 说明          |
| --------------------- | ----------- |
| Array&lt;string&gt; | resource对象对应的字符串数组 |
944

H
huangjie 已提交
945 946
**错误码:**

947 948
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
949 950
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
951 952
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
953
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
954

955
**示例:** 
H
HelloCrease 已提交
956
  ```ts
F
fangyunzhong 已提交
957
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
958
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
959 960

  let resource: resourceManager.Resource = {
961 962 963
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.strarray.test').id
964
  };
H
huangjie 已提交
965
  try {
966
    this.context.resourceManager.getStringArrayValueSync(resource);
H
huangjie 已提交
967
  } catch (error) {
F
fangyunzhong 已提交
968 969 970
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getStringArrayValueSync failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
971
  }
972 973
  ```

F
fangyunzhong 已提交
974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
### getStringArrayByNameSync<sup>10+</sup>

getStringArrayByNameSync(resName: string): Array&lt;string&gt;

用户获取指定资源名称对应的字符串数组,使用同步方式返回字符串数组。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 

| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resName | string | 是    | 资源名称 |

**返回值:**

| 类型                    | 说明          |
| --------------------- | ----------- |
| Array&lt;string&gt; | 对应资源名称的字符串数组 |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001003  | If the resName invalid.                       |
| 9001004  | If the resource not found by resName.         |
| 9001006  | If the resource re-ref too much.            |

**示例:** 
  ```ts
  try {
    this.context.resourceManager.getStringArrayByNameSync("test");
  } catch (error) {
F
fangyunzhong 已提交
1009 1010 1011
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getStringArrayByNameSync failed, error code: ${code}, message: ${message}.`);
F
fangyunzhong 已提交
1012 1013 1014
  }
  ```

1015
### getStringArrayValue<sup>9+</sup>
Z
zt147369 已提交
1016

1017
getStringArrayValue(resId: number, callback: AsyncCallback&lt;Array&lt;string&gt;&gt;): void
Z
zt147369 已提交
1018

1019
用户获取指定资源ID对应的字符串数组,使用callback形式返回字符串数组。
Z
zt147369 已提交
1020 1021 1022 1023 1024

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 

1025 1026 1027 1028
| 参数名      | 类型                                       | 必填   | 说明                |
| -------- | ---------------------------------------- | ---- | ----------------- |
| resId    | number                                   | 是    | 资源ID值             |
| callback | AsyncCallback&lt;Array&lt;string&gt;&gt; | 是    | 异步回调,用于返回获取的字符串数组 |
Z
zt147369 已提交
1029 1030 1031

**错误码:**

1032 1033
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

Z
zt147369 已提交
1034 1035 1036 1037
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
1038
| 9001006  | If the resource re-ref too much.            |
Z
zt147369 已提交
1039 1040 1041

**示例:** 
  ```ts
F
fangyunzhong 已提交
1042 1043
  import { BusinessError } from '@ohos.base';

Z
zt147369 已提交
1044
  try {
1045 1046 1047 1048 1049 1050
    this.context.resourceManager.getStringArrayValue($r('app.strarray.test').id, (error, value) => {
      if (error != null) {
        console.log("error is " + error);
      } else {
        let strArray = value;
      }
Z
zt147369 已提交
1051 1052
    });
  } catch (error) {
F
fangyunzhong 已提交
1053 1054 1055
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getStringArrayValue failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
1056 1057 1058
  }
  ```

1059
### getStringArrayValue<sup>9+</sup>
1060

1061
getStringArrayValue(resId: number): Promise&lt;Array&lt;string&gt;&gt;
1062

1063
用户获取指定资源ID对应的字符串数组,使用Promise形式返回字符串数组。
1064 1065 1066 1067

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
1068

1069 1070 1071
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |
1072

H
huangjie 已提交
1073 1074
**返回值:**

1075 1076 1077
| 类型                                 | 说明            |
| ---------------------------------- | ------------- |
| Promise&lt;Array&lt;string&gt;&gt; | 资源ID值对应的字符串数组 |
1078

H
huangjie 已提交
1079 1080
**错误码:**

1081 1082
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
1083 1084
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
1085 1086
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
1087
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
1088

1089
**示例:** 
H
HelloCrease 已提交
1090
  ```ts
F
fangyunzhong 已提交
1091 1092
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
1093
  try {
F
fangyunzhong 已提交
1094
    this.context.resourceManager.getStringArrayValue($r('app.strarray.test').id).then((value: Array<string>) => {
1095
      let strArray = value;
F
fangyunzhong 已提交
1096
    }).catch((error: BusinessError) => {
1097
      console.log("getStringArrayValue promise error is " + error);
H
huangjie 已提交
1098 1099
    });
  } catch (error) {
F
fangyunzhong 已提交
1100 1101 1102
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getStringArrayValue failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
1103
  }
1104
  ```
Z
zengyawen 已提交
1105

1106
### getStringArrayValue<sup>9+</sup>
Z
zt147369 已提交
1107

1108
getStringArrayValue(resource: Resource, callback: AsyncCallback&lt;Array&lt;string&gt;&gt;): void
Z
zt147369 已提交
1109

1110
用户获取指定resource对象对应的字符串数组,使用callback形式返回回字符串数组。
Z
zt147369 已提交
1111 1112 1113

**系统能力**:SystemCapability.Global.ResourceManager

Z
zt147369 已提交
1114 1115
**模型约束**:此接口仅可在Stage模型下使用。

Z
zt147369 已提交
1116 1117
**参数:** 

1118 1119 1120 1121
| 参数名      | 类型                                       | 必填   | 说明                |
| -------- | ---------------------------------------- | ---- | ----------------- |
| resource | [Resource](#resource9)                   | 是    | 资源信息              |
| callback | AsyncCallback&lt;Array&lt;string&gt;&gt; | 是    | 异步回调,用于返回获取的字符串数组 |
Z
zt147369 已提交
1122 1123 1124

**错误码:**

1125 1126
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

Z
zt147369 已提交
1127 1128 1129 1130
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
1131
| 9001006  | If the resource re-ref too much.            |
Z
zt147369 已提交
1132 1133 1134

**示例:** 
  ```ts
F
fangyunzhong 已提交
1135
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
1136
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
1137 1138

  let resource: resourceManager.Resource = {
1139 1140 1141
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.strarray.test').id
Z
zt147369 已提交
1142 1143
  };
  try {
1144 1145 1146 1147 1148 1149
    this.context.resourceManager.getStringArrayValue(resource, (error, value) => {
      if (error != null) {
        console.log("error is " + error);
      } else {
        let strArray = value;
      }
Z
zt147369 已提交
1150 1151
    });
  } catch (error) {
F
fangyunzhong 已提交
1152 1153 1154
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getStringArrayValue failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
1155 1156
  }
  ```
Z
zengyawen 已提交
1157

1158
### getStringArrayValue<sup>9+</sup>
H
huangjie 已提交
1159

1160
getStringArrayValue(resource: Resource): Promise&lt;Array&lt;string&gt;&gt;
Z
zengyawen 已提交
1161

1162
用户获取指定resource对象对应的字符串数组,使用Promise形式返回字符串数组。
Z
zengyawen 已提交
1163

V
VictoriaGuo 已提交
1164 1165
**系统能力**:SystemCapability.Global.ResourceManager

1166 1167
**模型约束**:此接口仅可在Stage模型下使用。

H
HelloCrease 已提交
1168
**参数:** 
H
huangjie 已提交
1169

1170 1171 1172 1173 1174 1175 1176 1177 1178
| 参数名      | 类型                     | 必填   | 说明   |
| -------- | ---------------------- | ---- | ---- |
| resource | [Resource](#resource9) | 是    | 资源信息 |

**返回值:**

| 类型                                 | 说明                 |
| ---------------------------------- | ------------------ |
| Promise&lt;Array&lt;string&gt;&gt; | resource对象对应的字符串数组 |
Z
zengyawen 已提交
1179

H
huangjie 已提交
1180 1181
**错误码:**

1182 1183
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
1184 1185
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
1186 1187
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
1188
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
1189

H
HelloCrease 已提交
1190
**示例:** 
H
HelloCrease 已提交
1191
  ```ts
F
fangyunzhong 已提交
1192 1193 1194 1195
  import resourceManager from '@ohos.resourceManager';
  import { BusinessError } from '@ohos.base';

  let resource: resourceManager.Resource = {
1196 1197 1198 1199
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.strarray.test').id
  };
H
huangjie 已提交
1200
  try {
F
fangyunzhong 已提交
1201
    this.context.resourceManager.getStringArrayValue(resource).then((value: Array<string>) => {
1202
      let strArray = value;
F
fangyunzhong 已提交
1203
    }).catch((error: BusinessError) => {
1204 1205
      console.log("getStringArray promise error is " + error);
    });
H
huangjie 已提交
1206
  } catch (error) {
F
fangyunzhong 已提交
1207 1208 1209
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getStringArrayValue failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
1210
  }
Z
zengyawen 已提交
1211 1212
  ```

1213
### getStringArrayByName<sup>9+</sup>
Z
zt147369 已提交
1214

1215
getStringArrayByName(resName: string, callback: AsyncCallback&lt;Array&lt;string&gt;&gt;): void
Z
zt147369 已提交
1216

1217
用户获取指定资源名称对应的字符串数组,使用callback形式返回字符串数组。
Z
zt147369 已提交
1218 1219 1220

**系统能力**:SystemCapability.Global.ResourceManager

1221
**参数:**
Z
zt147369 已提交
1222

1223 1224 1225 1226
| 参数名      | 类型                                       | 必填   | 说明                |
| -------- | ---------------------------------------- | ---- | ----------------- |
| resName  | string                                   | 是    | 资源名称              |
| callback | AsyncCallback&lt;Array&lt;string&gt;&gt; | 是    | 异步回调,用于返回获取的字符串数组 |
Z
zt147369 已提交
1227 1228 1229

**错误码:**

1230 1231
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

Z
zt147369 已提交
1232 1233
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
1234 1235 1236
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
| 9001006  | If the resource re-ref too much.            |
Z
zt147369 已提交
1237 1238 1239

**示例:** 
  ```ts
F
fangyunzhong 已提交
1240 1241
  import { BusinessError } from '@ohos.base';

Z
zt147369 已提交
1242
  try {
1243 1244 1245 1246 1247 1248 1249
    this.context.resourceManager.getStringArrayByName("test", (error, value) => {
      if (error != null) {
        console.log("error is " + error);
      } else {
        let strArray = value;
      }
    });
Z
zt147369 已提交
1250
  } catch (error) {
F
fangyunzhong 已提交
1251 1252 1253
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getStringArrayByName failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
1254 1255
  }
  ```
Z
zengyawen 已提交
1256

1257
### getStringArrayByName<sup>9+</sup>
Z
zengyawen 已提交
1258

1259
getStringArrayByName(resName: string): Promise&lt;Array&lt;string&gt;&gt;
Z
zengyawen 已提交
1260

1261
用户获取指定资源名称对应的字符串数组,使用Promise形式返回字符串数组。
Z
zengyawen 已提交
1262

V
VictoriaGuo 已提交
1263 1264
**系统能力**:SystemCapability.Global.ResourceManager

H
HelloCrease 已提交
1265
**参数:** 
H
huangjie 已提交
1266

1267 1268 1269
| 参数名     | 类型     | 必填   | 说明   |
| ------- | ------ | ---- | ---- |
| resName | string | 是    | 资源名称 |
Z
zengyawen 已提交
1270

H
huangjie 已提交
1271 1272
**返回值:**

1273 1274 1275
| 类型                                 | 说明           |
| ---------------------------------- | ------------ |
| Promise&lt;Array&lt;string&gt;&gt; | 资源名称对应的字符串数组 |
Z
zengyawen 已提交
1276

H
huangjie 已提交
1277 1278
**错误码:**

1279 1280
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
1281 1282
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
1283 1284 1285
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
1286

H
HelloCrease 已提交
1287
**示例:** 
H
HelloCrease 已提交
1288
  ```ts
F
fangyunzhong 已提交
1289 1290
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
1291
  try {
F
fangyunzhong 已提交
1292
    this.context.resourceManager.getStringArrayByName("test").then((value: Array<string>) => {
1293
      let strArray = value;
F
fangyunzhong 已提交
1294
    }).catch((error: BusinessError) => {
1295
      console.log("getStringArrayByName promise error is " + error);
H
huangjie 已提交
1296 1297
    });
  } catch (error) {
F
fangyunzhong 已提交
1298 1299 1300
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getStringArrayByName failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
1301 1302 1303
  }
  ```

1304
### getPluralStringValueSync<sup>10+</sup>
Z
zt147369 已提交
1305

1306
getPluralStringValueSync(resId: number, num: number): string
Z
zt147369 已提交
1307

1308
根据指定数量获取指定ID字符串表示的单复数字符串,使用同步方式返回字符串。
Z
zt147369 已提交
1309 1310 1311 1312 1313 1314 1315 1316

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 

| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |
1317
| num   | number | 是    | 数量值   |
Z
zt147369 已提交
1318 1319 1320

**返回值:**

1321 1322 1323
| 类型                    | 说明          |
| -------- | ----------- |
| string   | 根据指定数量获取指定ID字符串表示的单复数字符串 |
Z
zt147369 已提交
1324 1325 1326

**错误码:**

1327 1328
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

Z
zt147369 已提交
1329 1330 1331 1332
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
1333
| 9001006  | If the resource re-ref too much.            |
Z
zt147369 已提交
1334 1335 1336

**示例:** 
  ```ts
F
fangyunzhong 已提交
1337 1338
  import { BusinessError } from '@ohos.base';

Z
zt147369 已提交
1339
  try {
1340
    this.context.resourceManager.getPluralStringValueSync($r('app.plural.test').id, 1);
Z
zt147369 已提交
1341
  } catch (error) {
F
fangyunzhong 已提交
1342 1343 1344
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getPluralStringValueSync failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
1345
  }
Z
zengyawen 已提交
1346 1347
  ```

1348
### getPluralStringValueSync<sup>10+</sup>
1349

1350
getPluralStringValueSync(resource: Resource, num: number): string
1351

1352
根据指定数量获取指定resource对象表示的单复数字符串,使用同步方式返回字符串。
1353 1354 1355

**系统能力**:SystemCapability.Global.ResourceManager

Z
zt147369 已提交
1356 1357
**模型约束**:此接口仅可在Stage模型下使用。

1358
**参数:** 
H
huangjie 已提交
1359

1360 1361 1362 1363 1364 1365 1366 1367 1368 1369
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resource | [Resource](#resource9) | 是    | 资源信息 |
| num      | number                 | 是    | 数量值   |

**返回值:**

| 类型                    | 说明          |
| --------------------- | ----------- |
| string | 根据指定数量获取指定resource对象表示的单复数字符串 |
1370

H
huangjie 已提交
1371 1372
**错误码:**

1373 1374
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
1375 1376
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
1377 1378
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
1379
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
1380

1381
**示例:** 
H
HelloCrease 已提交
1382
  ```ts
F
fangyunzhong 已提交
1383
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
1384
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
1385 1386

  let resource: resourceManager.Resource = {
1387 1388 1389
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.plural.test').id
1390
  };
H
huangjie 已提交
1391
  try {
1392
    this.context.resourceManager.getPluralStringValueSync(resource, 1);
H
huangjie 已提交
1393
  } catch (error) {
F
fangyunzhong 已提交
1394 1395 1396
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getPluralStringValueSync failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
1397
  }
1398 1399
  ```

F
fangyunzhong 已提交
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432
### getPluralStringByNameSync<sup>10+</sup>

getPluralStringByNameSync(resName: string, num: number): string

根据指定数量获取指定资源名称表示的单复数字符串,使用同步方式返回字符串。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 

| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resName | string | 是    | 资源名称 |
| num      | number                 | 是    | 数量值   |

**返回值:**

| 类型                    | 说明          |
| --------------------- | ----------- |
| string | 根据指定数量获取指定资源名称表示的单复数字符串 |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001003  | If the resName invalid.                       |
| 9001004  | If the resource not found by resName.         |
| 9001006  | If the resource re-ref too much.            |

**示例:** 
  ```ts
F
fangyunzhong 已提交
1433 1434
  import { BusinessError } from '@ohos.base';

F
fangyunzhong 已提交
1435 1436 1437
  try {
    this.context.resourceManager.getPluralStringByNameSync("test", 1);
  } catch (error) {
F
fangyunzhong 已提交
1438 1439 1440
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getPluralStringByNameSync failed, error code: ${code}, message: ${message}.`);
F
fangyunzhong 已提交
1441 1442 1443
  }
  ```

1444
### getPluralStringValue<sup>9+</sup>
Z
zt147369 已提交
1445

1446
getPluralStringValue(resId: number, num: number, callback: AsyncCallback&lt;string&gt;): void
Z
zt147369 已提交
1447

1448
根据指定数量获取指定ID字符串表示的单复数字符串,使用callback形式返回字符串。
Z
zt147369 已提交
1449 1450 1451

**系统能力**:SystemCapability.Global.ResourceManager

1452
**参数:** 
Z
zt147369 已提交
1453

1454 1455 1456 1457 1458
| 参数名      | 类型                          | 必填   | 说明                              |
| -------- | --------------------------- | ---- | ------------------------------- |
| resId    | number                      | 是    | 资源ID值                           |
| num      | number                      | 是    | 数量值                             |
| callback | AsyncCallback&lt;string&gt; | 是    | 异步回调,返回根据指定数量获取指定ID字符串表示的单复数字符串 |
Z
zt147369 已提交
1459 1460 1461

**错误码:**

1462 1463
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

Z
zt147369 已提交
1464 1465 1466 1467
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
1468
| 9001006  | If the resource re-ref too much.            |
Z
zt147369 已提交
1469 1470 1471

**示例:** 
  ```ts
F
fangyunzhong 已提交
1472 1473
  import { BusinessError } from '@ohos.base';

Z
zt147369 已提交
1474
  try {
1475 1476 1477 1478 1479 1480
    this.context.resourceManager.getPluralStringValue($r("app.plural.test").id, 1, (error, value) => {
      if (error != null) {
        console.log("error is " + error);
      } else {
        let str = value;
      }
Z
zt147369 已提交
1481 1482
    });
  } catch (error) {
F
fangyunzhong 已提交
1483 1484 1485
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getPluralStringValue failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
1486 1487 1488
  }
  ```

1489
### getPluralStringValue<sup>9+</sup>
1490

1491
getPluralStringValue(resId: number, num: number): Promise&lt;string&gt;
1492

1493
根据指定数量获取对指定ID字符串表示的单复数字符串,使用Promise形式返回字符串。
1494 1495 1496 1497

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
1498

1499 1500 1501 1502
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |
| num   | number | 是    | 数量值   |
1503

H
huangjie 已提交
1504 1505
**返回值:**

H
HelloCrease 已提交
1506 1507
| 类型                    | 说明                        |
| --------------------- | ------------------------- |
1508
| Promise&lt;string&gt; | 根据提供的数量获取对应ID字符串表示的单复数字符串 |
1509

H
huangjie 已提交
1510 1511
**错误码:**

1512 1513
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
1514 1515
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
1516 1517
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
1518
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
1519

1520
**示例:** 
H
HelloCrease 已提交
1521
  ```ts
F
fangyunzhong 已提交
1522 1523
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
1524
  try {
F
fangyunzhong 已提交
1525
    this.context.resourceManager.getPluralStringValue($r("app.plural.test").id, 1).then((value: string) => {
1526
      let str = value;
F
fangyunzhong 已提交
1527
    }).catch((error: BusinessError) => {
1528
      console.log("getPluralStringValue promise error is " + error);
H
huangjie 已提交
1529 1530
    });
  } catch (error) {
F
fangyunzhong 已提交
1531 1532 1533
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getPluralStringValue failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
1534
  }
1535 1536
  ```

1537
### getPluralStringValue<sup>9+</sup>
Z
zt147369 已提交
1538

1539
getPluralStringValue(resource: Resource, num: number, callback: AsyncCallback&lt;string&gt;): void
Z
zt147369 已提交
1540

1541
根据指定数量获取指定resource对象表示的单复数字符串,使用callback形式返回字符串。
Z
zt147369 已提交
1542 1543 1544

**系统能力**:SystemCapability.Global.ResourceManager

Z
zt147369 已提交
1545 1546
**模型约束**:此接口仅可在Stage模型下使用。

Z
zt147369 已提交
1547 1548
**参数:** 

1549 1550 1551 1552 1553
| 参数名      | 类型                          | 必填   | 说明                                   |
| -------- | --------------------------- | ---- | ------------------------------------ |
| resource | [Resource](#resource9)      | 是    | 资源信息                                 |
| num      | number                      | 是    | 数量值                                  |
| callback | AsyncCallback&lt;string&gt; | 是    | 异步回调,返回根据指定数量获取指定resource对象表示的单复数字符串 |
Z
zt147369 已提交
1554 1555 1556

**错误码:**

1557 1558
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

Z
zt147369 已提交
1559 1560 1561 1562
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
1563
| 9001006  | If the resource re-ref too much.            |
Z
zt147369 已提交
1564 1565 1566

**示例:** 
  ```ts
F
fangyunzhong 已提交
1567
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
1568
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
1569 1570

  let resource: resourceManager.Resource = {
1571 1572 1573
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.plural.test').id
Z
zt147369 已提交
1574 1575
  };
  try {
1576 1577 1578 1579 1580 1581
    this.context.resourceManager.getPluralStringValue(resource, 1, (error, value) => {
      if (error != null) {
        console.log("error is " + error);
      } else {
        let str = value;
      }
Z
zt147369 已提交
1582 1583
    });
  } catch (error) {
F
fangyunzhong 已提交
1584 1585 1586
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getPluralStringValue failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
1587 1588
  }
  ```
Z
zengyawen 已提交
1589

1590
### getPluralStringValue<sup>9+</sup>
Z
zengyawen 已提交
1591

1592
getPluralStringValue(resource: Resource, num: number): Promise&lt;string&gt;
Z
zengyawen 已提交
1593

1594
根据指定数量获取对指定resource对象表示的单复数字符串,使用Promise形式返回字符串。
Z
zengyawen 已提交
1595

V
VictoriaGuo 已提交
1596 1597
**系统能力**:SystemCapability.Global.ResourceManager

1598 1599
**模型约束**:此接口仅可在Stage模型下使用。

H
HelloCrease 已提交
1600
**参数:** 
H
huangjie 已提交
1601

1602 1603 1604 1605
| 参数名      | 类型                     | 必填   | 说明   |
| -------- | ---------------------- | ---- | ---- |
| resource | [Resource](#resource9) | 是    | 资源信息 |
| num      | number                 | 是    | 数量值  |
Z
zengyawen 已提交
1606

1607
**返回值:**
Z
zengyawen 已提交
1608

1609 1610 1611
| 类型                    | 说明                             |
| --------------------- | ------------------------------ |
| Promise&lt;string&gt; | 根据提供的数量获取对应resource对象表示的单复数字符串 |
Z
zengyawen 已提交
1612

1613
**错误码:**
V
VictoriaGuo 已提交
1614

1615
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。
H
huangjie 已提交
1616

1617 1618 1619 1620 1621
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
| 9001006  | If the resource re-ref too much.            |
Z
zengyawen 已提交
1622

H
HelloCrease 已提交
1623
**示例:** 
H
HelloCrease 已提交
1624
  ```ts
F
fangyunzhong 已提交
1625 1626 1627 1628
  import resourceManager from '@ohos.resourceManager';
  import { BusinessError } from '@ohos.base';

  let resource: resourceManager.Resource = {
1629 1630 1631 1632
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.plural.test').id
  };
Z
zt147369 已提交
1633
  try {
F
fangyunzhong 已提交
1634
    this.context.resourceManager.getPluralStringValue(resource, 1).then((value: string) => {
1635
      let str = value;
F
fangyunzhong 已提交
1636
    }).catch((error: BusinessError) => {
1637
      console.log("getPluralStringValue promise error is " + error);
Z
zt147369 已提交
1638 1639
    });
  } catch (error) {
F
fangyunzhong 已提交
1640 1641 1642
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getPluralStringValue failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
1643
  }
Z
zengyawen 已提交
1644
  ```
Z
zengyawen 已提交
1645

1646
### getPluralStringByName<sup>9+</sup>
Z
zengyawen 已提交
1647

1648
getPluralStringByName(resName: string, num: number, callback: AsyncCallback&lt;string&gt;): void
Z
zengyawen 已提交
1649

1650
根据传入的数量值,获取资源名称对应的字符串资源,使用callback形式返回字符串。
Z
zengyawen 已提交
1651

V
VictoriaGuo 已提交
1652 1653
**系统能力**:SystemCapability.Global.ResourceManager

H
HelloCrease 已提交
1654
**参数:** 
H
huangjie 已提交
1655

1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670
| 参数名      | 类型                          | 必填   | 说明                            |
| -------- | --------------------------- | ---- | ----------------------------- |
| resName  | string                      | 是    | 资源名称                          |
| num      | number                      | 是    | 数量值                           |
| callback | AsyncCallback&lt;string&gt; | 是    | 异步回调,返回根据传入的数量值获取资源名称对应的字符串资源 |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
| 9001006  | If the resource re-ref too much.            |
Z
zengyawen 已提交
1671

H
HelloCrease 已提交
1672
**示例:** 
H
HelloCrease 已提交
1673
  ```ts
F
fangyunzhong 已提交
1674 1675
  import { BusinessError } from '@ohos.base';

Z
zt147369 已提交
1676
  try {
1677
    this.context.resourceManager.getPluralStringByName("test", 1, (error, value) => {
Z
zt147369 已提交
1678
      if (error != null) {
1679
        console.log("error is " + error);
Z
zt147369 已提交
1680
      } else {
1681
        let str = value;
Z
zt147369 已提交
1682 1683 1684
      }
    });
  } catch (error) {
F
fangyunzhong 已提交
1685 1686 1687
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getPluralStringByName failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
1688
  }
Z
zengyawen 已提交
1689
  ```
Z
zengyawen 已提交
1690

1691
### getPluralStringByName<sup>9+</sup>
Z
zengyawen 已提交
1692

1693
getPluralStringByName(resName: string, num: number): Promise&lt;string&gt;
Z
zengyawen 已提交
1694

1695
根据传入的数量值,获取资源名称对应的字符串资源,使用Promise形式返回字符串。
Z
zengyawen 已提交
1696

V
VictoriaGuo 已提交
1697 1698
**系统能力**:SystemCapability.Global.ResourceManager

1699
**参数:** 
Z
zengyawen 已提交
1700

1701 1702 1703 1704
| 参数名     | 类型     | 必填   | 说明   |
| ------- | ------ | ---- | ---- |
| resName | string | 是    | 资源名称 |
| num     | number | 是    | 数量值  |
V
VictoriaGuo 已提交
1705

1706
**返回值:**
H
huangjie 已提交
1707

1708 1709 1710
| 类型                    | 说明                     |
| --------------------- | ---------------------- |
| Promise&lt;string&gt; | 根据传入的数量值获取资源名称对应的字符串资源 |
Z
zengyawen 已提交
1711

H
huangjie 已提交
1712 1713
**错误码:**

1714 1715
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
1716 1717
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
1718 1719
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
H
huangjie 已提交
1720
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
1721

H
HelloCrease 已提交
1722
**示例:** 
H
HelloCrease 已提交
1723
  ```ts
F
fangyunzhong 已提交
1724 1725
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
1726
  try {
F
fangyunzhong 已提交
1727
    this.context.resourceManager.getPluralStringByName("test", 1).then((value: string) => {
1728
      let str = value;
F
fangyunzhong 已提交
1729
    }).catch((error: BusinessError) => {
1730
      console.log("getPluralStringByName promise error is " + error);
H
huangjie 已提交
1731 1732
    });
  } catch (error) {
F
fangyunzhong 已提交
1733 1734 1735
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getPluralStringByName failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
1736
  }
Z
zengyawen 已提交
1737
  ```
Z
zengyawen 已提交
1738

1739
### getMediaContentSync<sup>10+</sup>
Z
zengyawen 已提交
1740

1741
getMediaContentSync(resId: number, density?: number): Uint8Array
Z
zengyawen 已提交
1742

1743
用户获取指定资源ID对应的默认或指定的屏幕密度媒体文件内容,使用同步方式返回字节数组。
Z
zengyawen 已提交
1744

V
VictoriaGuo 已提交
1745 1746
**系统能力**:SystemCapability.Global.ResourceManager

1747
**参数:**
H
huangjie 已提交
1748

H
HelloCrease 已提交
1749 1750 1751
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |
1752
| [density](#screendensity) | number | 否    | 资源获取需要的屏幕密度,0或缺省表示默认屏幕密度 |
Z
zengyawen 已提交
1753

H
huangjie 已提交
1754 1755
**返回值:**

1756 1757 1758
| 类型                    | 说明          |
| -------- | ----------- |
| Uint8Array   | 资源ID对应的媒体文件内容 |
Z
zengyawen 已提交
1759

H
huangjie 已提交
1760 1761
**错误码:**

1762 1763
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
1764 1765
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
1766 1767
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
H
huangjie 已提交
1768

1769
**示例:**
H
HelloCrease 已提交
1770
  ```ts
F
fangyunzhong 已提交
1771 1772
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
1773
  try {
1774
    this.context.resourceManager.getMediaContentSync($r('app.media.test').id); // 默认屏幕密度
H
huangjie 已提交
1775
  } catch (error) {
F
fangyunzhong 已提交
1776 1777 1778
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getMediaContentSync failed, error code: ${code}, message: ${message}.`);
1779 1780 1781 1782 1783
  }

  try {
    this.context.resourceManager.getMediaContentSync($r('app.media.test').id, 120); // 指定屏幕密度
  } catch (error) {
F
fangyunzhong 已提交
1784 1785 1786
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getMediaContentSync failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
1787
  }
Z
zengyawen 已提交
1788
  ```
Z
zengyawen 已提交
1789

1790
### getMediaContentSync<sup>10+</sup>
1791

1792
getMediaContentSync(resource: Resource, density?: number): Uint8Array
1793

1794
用户获取指定resource对象对应的默认或指定的屏幕密度媒体文件内容,使用同步方式返回字节数组。
1795 1796 1797

**系统能力**:SystemCapability.Global.ResourceManager

Z
zt147369 已提交
1798 1799
**模型约束**:此接口仅可在Stage模型下使用。

1800
**参数:**
H
huangjie 已提交
1801

1802 1803 1804 1805 1806 1807 1808 1809 1810 1811
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resource | [Resource](#resource9) | 是    | 资源信息 |
| [density](#screendensity) | number | 否    | 资源获取需要的屏幕密度,0或缺省表示默认屏幕密度 |

**返回值:**

| 类型                    | 说明          |
| --------------------- | ----------- |
| Uint8Array | resource对象对应的媒体文件内容 |
1812

H
huangjie 已提交
1813 1814
**错误码:**

1815 1816
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
1817 1818
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
1819 1820
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
H
huangjie 已提交
1821

1822
**示例:**
H
HelloCrease 已提交
1823
  ```ts
F
fangyunzhong 已提交
1824
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
1825
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
1826 1827

  let resource: resourceManager.Resource = {
1828 1829 1830
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.media.test').id
1831
  };
H
huangjie 已提交
1832
  try {
1833
    this.context.resourceManager.getMediaContentSync(resource); // 默认屏幕密度
H
huangjie 已提交
1834
  } catch (error) {
F
fangyunzhong 已提交
1835 1836 1837
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getMediaContentSync failed, error code: ${code}, message: ${message}.`);
1838 1839 1840 1841 1842
  }

  try {
    this.context.resourceManager.getMediaContentSync(resource, 120); // 指定屏幕密度
  } catch (error) {
F
fangyunzhong 已提交
1843 1844 1845
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getMediaContentSync failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
1846
  }
1847 1848
  ```

F
fangyunzhong 已提交
1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880
### getMediaByNameSync<sup>10+</sup>

getMediaByNameSync(resName: string, density?: number): Uint8Array

用户获取指定资源名称对应的默认或指定的屏幕密度媒体文件内容,使用同步方式返回字节数组。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:**

| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resName | string | 是    | 资源名称 |
| [density](#screendensity) | number | 否    | 资源获取需要的屏幕密度,0或缺省表示默认屏幕密度 |

**返回值:**

| 类型                    | 说明          |
| --------------------- | ----------- |
| Uint8Array | 对应资源名称的媒体文件内容 |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001003  | If the resName invalid.                       |
| 9001004  | If the resource not found by resName.         |

**示例:**
  ```ts
F
fangyunzhong 已提交
1881 1882
  import { BusinessError } from '@ohos.base';

F
fangyunzhong 已提交
1883 1884 1885
  try {
    this.context.resourceManager.getMediaByNameSync("test"); // 默认屏幕密度
  } catch (error) {
F
fangyunzhong 已提交
1886 1887 1888
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getMediaByNameSync failed, error code: ${code}, message: ${message}.`);
F
fangyunzhong 已提交
1889 1890 1891 1892 1893
  }

  try {
    this.context.resourceManager.getMediaByNameSync("test", 120); // 指定屏幕密度
  } catch (error) {
F
fangyunzhong 已提交
1894 1895 1896
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getMediaByNameSync failed, error code: ${code}, message: ${message}.`);
F
fangyunzhong 已提交
1897 1898 1899
  }
  ```

1900
### getMediaContent<sup>9+</sup>
1901

1902
getMediaContent(resId: number, callback: AsyncCallback&lt;Uint8Array&gt;): void
1903

1904
用户获取指定资源ID对应的媒体文件内容,使用callback形式返回字节数组。
1905 1906 1907 1908

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
1909

1910 1911 1912 1913
| 参数名      | 类型                              | 必填   | 说明                 |
| -------- | ------------------------------- | ---- | ------------------ |
| resId    | number                          | 是    | 资源ID值              |
| callback | AsyncCallback&lt;Uint8Array&gt; | 是    | 异步回调,用于返回获取的媒体文件内容 |
1914

H
huangjie 已提交
1915 1916
**错误码:**

1917 1918
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
1919 1920
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
1921 1922
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
H
huangjie 已提交
1923

1924
**示例:** 
H
HelloCrease 已提交
1925
  ```ts
F
fangyunzhong 已提交
1926 1927
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
1928
  try {
1929 1930 1931 1932 1933 1934
    this.context.resourceManager.getMediaContent($r('app.media.test').id, (error, value) => {
      if (error != null) {
        console.log("error is " + error);
      } else {
        let media = value;
      }
H
huangjie 已提交
1935 1936
    });
  } catch (error) {
F
fangyunzhong 已提交
1937 1938 1939
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getMediaContent failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
1940
  }
1941 1942
  ```

1943
### getMediaContent<sup>10+</sup>
Z
zengyawen 已提交
1944

1945
getMediaContent(resId: number, density: number, callback: AsyncCallback&lt;Uint8Array&gt;): void
Z
zengyawen 已提交
1946

1947
用户获取指定资源ID对应的指定屏幕密度媒体文件内容,使用callback形式返回字节数组。
Z
zengyawen 已提交
1948

V
VictoriaGuo 已提交
1949 1950
**系统能力**:SystemCapability.Global.ResourceManager

H
HelloCrease 已提交
1951
**参数:** 
H
huangjie 已提交
1952

1953 1954 1955 1956 1957
| 参数名      | 类型                              | 必填   | 说明                 |
| -------- | ------------------------------- | ---- | ------------------ |
| resId    | number                          | 是    | 资源ID值              |
| [density](#screendensity)  | number                          | 是    | 资源获取需要的屏幕密度,0表示默认屏幕密度    |
| callback | AsyncCallback&lt;Uint8Array&gt; | 是    | 异步回调,用于返回获取的媒体文件内容 |
Z
zengyawen 已提交
1958

H
huangjie 已提交
1959 1960
**错误码:**

1961 1962
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
1963 1964
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
1965 1966
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
H
huangjie 已提交
1967

H
HelloCrease 已提交
1968
**示例:** 
H
HelloCrease 已提交
1969
  ```ts
F
fangyunzhong 已提交
1970 1971
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
1972
  try {
1973 1974 1975 1976 1977 1978
    this.context.resourceManager.getMediaContent($r('app.media.test').id, 120, (error, value) => {
      if (error != null) {
        console.error(`callback getMediaContent failed, error code: ${error.code}, message: ${error.message}.`);
      } else {
        let media = value;
      }
H
huangjie 已提交
1979 1980
    });
  } catch (error) {
F
fangyunzhong 已提交
1981 1982 1983
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getMediaContent failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
1984
  }
Z
zengyawen 已提交
1985 1986
  ```

1987
### getMediaContent<sup>9+</sup>
Z
zengyawen 已提交
1988

1989
getMediaContent(resId: number): Promise&lt;Uint8Array&gt;
Z
zengyawen 已提交
1990

1991
用户获取指定资源ID对应的媒体文件内容,使用Promise形式返回字节数组。
Z
zengyawen 已提交
1992

V
VictoriaGuo 已提交
1993 1994
**系统能力**:SystemCapability.Global.ResourceManager

H
HelloCrease 已提交
1995
**参数:** 
H
huangjie 已提交
1996

1997 1998 1999 2000
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |

H
huangjie 已提交
2001 2002
**返回值:**

2003 2004 2005
| 类型                        | 说明             |
| ------------------------- | -------------- |
| Promise&lt;Uint8Array&gt; | 资源ID值对应的媒体文件内容 |
Z
zengyawen 已提交
2006

H
huangjie 已提交
2007 2008
**错误码:**

2009 2010
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
2011 2012
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2013 2014
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
H
huangjie 已提交
2015

H
HelloCrease 已提交
2016
**示例:** 
H
HelloCrease 已提交
2017
  ```ts
F
fangyunzhong 已提交
2018 2019
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
2020
  try {
F
fangyunzhong 已提交
2021
    this.context.resourceManager.getMediaContent($r('app.media.test').id).then((value: Uint8Array) => {
2022
      let media = value;
F
fangyunzhong 已提交
2023
    }).catch((error: BusinessError) => {
2024
      console.log("getMediaContent promise error is " + error);
H
huangjie 已提交
2025 2026
    });
  } catch (error) {
F
fangyunzhong 已提交
2027 2028 2029
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getMediaContent failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
2030
  }
Z
zengyawen 已提交
2031
  ```
W
wplan1 已提交
2032

2033
### getMediaContent<sup>10+</sup>
W
wplan1 已提交
2034

2035
getMediaContent(resId: number, density: number): Promise&lt;Uint8Array&gt;
W
wplan1 已提交
2036

2037
用户获取指定资源ID对应的指定屏幕密度媒体文件内容,使用Promise形式返回字节数组。
W
wplan1 已提交
2038 2039 2040

**系统能力**:SystemCapability.Global.ResourceManager

H
HelloCrease 已提交
2041
**参数:** 
H
huangjie 已提交
2042

2043 2044 2045 2046 2047 2048 2049 2050 2051 2052
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |
| [density](#screendensity)  | number                          | 是    | 资源获取需要的屏幕密度,0表示默认屏幕密度    |

**返回值:**

| 类型                        | 说明             |
| ------------------------- | -------------- |
| Promise&lt;Uint8Array&gt; | 资源ID值对应的媒体文件内容 |
H
huangjie 已提交
2053

H
huangjie 已提交
2054 2055
**错误码:**

2056 2057
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
2058 2059
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2060 2061
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
W
wplan1 已提交
2062

H
HelloCrease 已提交
2063
**示例:** 
H
HelloCrease 已提交
2064
  ```ts
F
fangyunzhong 已提交
2065 2066
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
2067
  try {
F
fangyunzhong 已提交
2068
    this.context.resourceManager.getMediaContent($r('app.media.test').id, 120).then((value: Uint8Array) => {
2069
      let media = value;
F
fangyunzhong 已提交
2070
    }).catch((error: BusinessError) => {
2071
      console.error(`promise getMediaContent failed, error code: ${error.code}, message: ${error.message}.`);
H
huangjie 已提交
2072 2073
    });
  } catch (error) {
F
fangyunzhong 已提交
2074 2075 2076
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getMediaContent failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
2077
  }
W
wplan1 已提交
2078 2079
  ```

2080
### getMediaContent<sup>9+</sup>
W
wplan1 已提交
2081

2082
getMediaContent(resource: Resource, callback: AsyncCallback&lt;Uint8Array&gt;): void
W
wplan1 已提交
2083

2084
用户获取指定resource对象对应的媒体文件内容,使用callback形式返回字节数组。
W
wplan1 已提交
2085 2086 2087

**系统能力**:SystemCapability.Global.ResourceManager

2088
**模型约束**:此接口仅可在Stage模型下使用。
W
wplan1 已提交
2089

2090
**参数:** 
H
huangjie 已提交
2091

2092 2093 2094 2095
| 参数名      | 类型                              | 必填   | 说明                 |
| -------- | ------------------------------- | ---- | ------------------ |
| resource | [Resource](#resource9)          | 是    | 资源信息               |
| callback | AsyncCallback&lt;Uint8Array&gt; | 是    | 异步回调,用于返回获取的媒体文件内容 |
H
huangjie 已提交
2096

H
huangjie 已提交
2097 2098
**错误码:**

2099 2100
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
2101 2102
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2103 2104
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
W
wplan1 已提交
2105

H
HelloCrease 已提交
2106
**示例:** 
H
HelloCrease 已提交
2107
  ```ts
F
fangyunzhong 已提交
2108
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
2109
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
2110 2111

  let resource: resourceManager.Resource = {
2112 2113 2114 2115
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.media.test').id
  };
H
huangjie 已提交
2116
  try {
2117 2118 2119 2120 2121 2122
    this.context.resourceManager.getMediaContent(resource, (error, value) => {
      if (error != null) {
        console.log("error is " + error);
      } else {
        let media = value;
      }
H
huangjie 已提交
2123 2124
    });
  } catch (error) {
F
fangyunzhong 已提交
2125 2126 2127
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getMediaContent failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
2128
  }
W
wplan1 已提交
2129 2130
  ```

2131
### getMediaContent<sup>10+</sup>
2132

2133
getMediaContent(resource: Resource, density: number, callback: AsyncCallback&lt;Uint8Array&gt;): void
2134

2135
用户获取指定resource对象对应的指定屏幕密度媒体文件内容,使用callback形式返回字节数组。
2136 2137 2138

**系统能力**:SystemCapability.Global.ResourceManager

2139 2140
**模型约束**:此接口仅可在Stage模型下使用。

2141 2142
**参数:** 

2143 2144 2145 2146 2147
| 参数名      | 类型                              | 必填   | 说明                 |
| -------- | ------------------------------- | ---- | ------------------ |
| resource | [Resource](#resource9)          | 是    | 资源信息               |
| [density](#screendensity)  | number        | 是    | 资源获取需要的屏幕密度,0表示默认屏幕密度    |
| callback | AsyncCallback&lt;Uint8Array&gt; | 是    | 异步回调,用于返回获取的媒体文件内容 |
2148 2149 2150 2151 2152 2153 2154

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2155 2156
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
2157 2158 2159

**示例:** 
  ```ts
F
fangyunzhong 已提交
2160
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
2161
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
2162 2163

  let resource: resourceManager.Resource = {
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.media.test').id
  };
  try {
    this.context.resourceManager.getMediaContent(resource, 120, (error, value) => {
      if (error != null) {
        console.error(`callback getMediaContent failed, error code: ${error.code}, message: ${error.message}.`);
      } else {
        let media = value;
      }
2175 2176
    });
  } catch (error) {
F
fangyunzhong 已提交
2177 2178 2179
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getMediaContent failed, error code: ${code}, message: ${message}.`);
2180 2181 2182
  }
  ```

2183
### getMediaContent<sup>9+</sup>
2184

2185
getMediaContent(resource: Resource): Promise&lt;Uint8Array&gt;
2186

2187
用户获取指定resource对象对应的媒体文件内容,使用Promise形式返回字节数组。
2188 2189 2190

**系统能力**:SystemCapability.Global.ResourceManager

2191 2192
**模型约束**:此接口仅可在Stage模型下使用。

2193 2194
**参数:** 

2195 2196 2197
| 参数名      | 类型                     | 必填   | 说明   |
| -------- | ---------------------- | ---- | ---- |
| resource | [Resource](#resource9) | 是    | 资源信息 |
2198 2199 2200

**返回值:**

2201 2202 2203
| 类型                        | 说明                  |
| ------------------------- | ------------------- |
| Promise&lt;Uint8Array&gt; | resource对象对应的媒体文件内容 |
2204 2205 2206 2207 2208 2209 2210

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2211 2212
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
2213 2214 2215

**示例:** 
  ```ts
F
fangyunzhong 已提交
2216 2217 2218 2219
  import resourceManager from '@ohos.resourceManager';
  import { BusinessError } from '@ohos.base';

  let resource: resourceManager.Resource = {
2220 2221 2222 2223 2224
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.media.test').id
  };
  try {
F
fangyunzhong 已提交
2225
    this.context.resourceManager.getMediaContent(resource).then((value: Uint8Array) => {
2226
      let media = value;
F
fangyunzhong 已提交
2227
    }).catch((error: BusinessError) => {
2228
      console.log("getMediaContent promise error is " + error);
2229 2230
    });
  } catch (error) {
F
fangyunzhong 已提交
2231 2232 2233
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getMediaContent failed, error code: ${code}, message: ${message}.`);
2234 2235 2236
  }
  ```

2237
### getMediaContent<sup>10+</sup>
W
wplan1 已提交
2238

2239
getMediaContent(resource: Resource, density: number): Promise&lt;Uint8Array&gt;
H
huangjie 已提交
2240

2241
用户获取指定resource对象对应的指定屏幕密度媒体文件内容,使用Promise形式返回字节数组。
H
huangjie 已提交
2242

H
huangjie 已提交
2243
**系统能力**:SystemCapability.Global.ResourceManager
H
huangjie 已提交
2244

2245 2246
**模型约束**:此接口仅可在Stage模型下使用。

H
huangjie 已提交
2247
**参数:** 
H
huangjie 已提交
2248

2249 2250 2251 2252 2253 2254 2255 2256 2257 2258
| 参数名      | 类型                     | 必填   | 说明   |
| -------- | ---------------------- | ---- | ---- |
| resource | [Resource](#resource9) | 是    | 资源信息 |
| [density](#screendensity)  | number                          | 是    | 资源获取需要的屏幕密度,0表示默认屏幕密度    |

**返回值:**

| 类型                        | 说明                  |
| ------------------------- | ------------------- |
| Promise&lt;Uint8Array&gt; | resource对象对应的媒体文件内容 |
H
huangjie 已提交
2259

H
huangjie 已提交
2260 2261
**错误码:**

2262 2263
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
2264 2265
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2266 2267
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
H
huangjie 已提交
2268

H
huangjie 已提交
2269
**示例:** 
H
HelloCrease 已提交
2270
  ```ts
F
fangyunzhong 已提交
2271 2272 2273 2274
  import resourceManager from '@ohos.resourceManager';
  import { BusinessError } from '@ohos.base';

  let resource: resourceManager.Resource = {
2275 2276 2277 2278
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.media.test').id
  };
H
huangjie 已提交
2279
  try {
F
fangyunzhong 已提交
2280
    this.context.resourceManager.getMediaContent(resource, 120).then((value: Uint8Array) => {
2281
      let media = value;
F
fangyunzhong 已提交
2282
    }).catch((error: BusinessError) => {
2283
      console.error(`promise getMediaContent failed, error code: ${error.code}, message: ${error.message}.`);
H
huangjie 已提交
2284 2285
    });
  } catch (error) {
F
fangyunzhong 已提交
2286 2287 2288
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getMediaContent failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
2289
  }
H
huangjie 已提交
2290 2291
  ```

2292
### getMediaByName<sup>9+</sup>
H
huangjie 已提交
2293

2294
getMediaByName(resName: string, callback: AsyncCallback&lt;Uint8Array&gt;): void
H
huangjie 已提交
2295

2296
用户获取指定资源ID对应的媒体文件内容,使用callback形式返回字节数组。
H
huangjie 已提交
2297 2298 2299 2300

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
2301

2302 2303 2304 2305
| 参数名      | 类型                              | 必填   | 说明                 |
| -------- | ------------------------------- | ---- | ------------------ |
| resName  | string                          | 是    | 资源名称               |
| callback | AsyncCallback&lt;Uint8Array&gt; | 是    | 异步回调,用于返回获取的媒体文件内容 |
H
huangjie 已提交
2306

H
huangjie 已提交
2307 2308
**错误码:**

2309 2310
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
2311 2312
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2313 2314
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
H
huangjie 已提交
2315 2316 2317

**示例:** 
  ```ts
F
fangyunzhong 已提交
2318 2319
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
2320
  try {
2321 2322 2323 2324 2325 2326
    this.context.resourceManager.getMediaByName("test", (error, value) => {
      if (error != null) {
        console.log("error is " + error);
      } else {
        let media = value;
      }
H
huangjie 已提交
2327 2328
    });
  } catch (error) {
F
fangyunzhong 已提交
2329 2330 2331
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getMediaByName failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
2332
  }
H
huangjie 已提交
2333 2334
  ```

2335
### getMediaByName<sup>10+</sup>
H
huangjie 已提交
2336

2337
getMediaByName(resName: string, density: number, callback: AsyncCallback&lt;Uint8Array&gt;): void
H
huangjie 已提交
2338

2339
用户获取指定资源ID对应的指定屏幕密度媒体文件内容,使用callback形式返回字节数组。
H
huangjie 已提交
2340 2341 2342

**系统能力**:SystemCapability.Global.ResourceManager

2343
**参数:** 
H
huangjie 已提交
2344

2345 2346 2347 2348 2349
| 参数名      | 类型                              | 必填   | 说明                 |
| -------- | ------------------------------- | ---- | ------------------ |
| resName  | string                          | 是    | 资源名称               |
| [density](#screendensity)  | number        | 是    | 资源获取需要的屏幕密度,0表示默认屏幕密度    |
| callback | AsyncCallback&lt;Uint8Array&gt; | 是    | 异步回调,用于返回获取的媒体文件内容 |
H
huangjie 已提交
2350

H
huangjie 已提交
2351 2352
**错误码:**

2353 2354
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
2355 2356
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
2357 2358
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
H
huangjie 已提交
2359

2360
**示例:** 
H
huangjie 已提交
2361
  ```ts
F
fangyunzhong 已提交
2362 2363
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
2364
  try {
2365 2366 2367 2368 2369 2370 2371
    this.context.resourceManager.getMediaByName("test", 120, (error, value) => {
      if (error != null) {
        console.error(`callback getMediaByName failed, error code: ${error.code}, message: ${error.message}.`);
      } else {
        let media = value;
      }
    });
H
huangjie 已提交
2372
  } catch (error) {
F
fangyunzhong 已提交
2373 2374 2375
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getMediaByName failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
2376 2377 2378
  }
  ```

2379
### getMediaByName<sup>9+</sup>
H
huangjie 已提交
2380

2381
getMediaByName(resName: string): Promise&lt;Uint8Array&gt;
H
huangjie 已提交
2382

2383
用户获取指定资源名称对应的媒体文件内容,使用Promise形式返回字节数组。
H
huangjie 已提交
2384 2385 2386

**系统能力**:SystemCapability.Global.ResourceManager

2387
**参数:** 
H
huangjie 已提交
2388

H
HelloCrease 已提交
2389
| 参数名     | 类型     | 必填   | 说明   |
H
huangjie 已提交
2390
| ------- | ------ | ---- | ---- |
H
HelloCrease 已提交
2391
| resName | string | 是    | 资源名称 |
H
huangjie 已提交
2392 2393

**返回值:**
H
huangjie 已提交
2394

2395 2396 2397
| 类型                        | 说明            |
| ------------------------- | ------------- |
| Promise&lt;Uint8Array&gt; | 资源名称对应的媒体文件内容 |
H
huangjie 已提交
2398

H
huangjie 已提交
2399 2400
**错误码:**

2401 2402
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
2403 2404
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
2405 2406
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
H
huangjie 已提交
2407

2408
**示例:** 
H
HelloCrease 已提交
2409
  ```ts
F
fangyunzhong 已提交
2410 2411
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
2412
  try {
F
fangyunzhong 已提交
2413
    this.context.resourceManager.getMediaByName("test").then((value: Uint8Array) => {
2414
      let media = value;
F
fangyunzhong 已提交
2415
    }).catch((error: BusinessError) => {
2416
      console.log("getMediaByName promise error is " + error);
H
huangjie 已提交
2417 2418
    });
  } catch (error) {
F
fangyunzhong 已提交
2419 2420 2421
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getMediaByName failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
2422
  }
H
huangjie 已提交
2423 2424
  ```

2425
### getMediaByName<sup>10+</sup>
H
huangjie 已提交
2426

2427
getMediaByName(resName: string, density: number): Promise&lt;Uint8Array&gt;
H
huangjie 已提交
2428

2429
用户获取指定资源名称对应的指定屏幕密度媒体文件内容,使用Promise形式返回字节数组。
H
huangjie 已提交
2430 2431 2432

**系统能力**:SystemCapability.Global.ResourceManager

2433
**参数:** 
H
huangjie 已提交
2434

2435 2436 2437 2438 2439 2440 2441 2442 2443 2444
| 参数名     | 类型     | 必填   | 说明   |
| ------- | ------ | ---- | ---- |
| resName | string | 是    | 资源名称 |
| [density](#screendensity)  | number                          | 是    | 资源获取需要的屏幕密度,0表示默认屏幕密度    |

**返回值:**

| 类型                        | 说明            |
| ------------------------- | ------------- |
| Promise&lt;Uint8Array&gt; | 资源名称对应的媒体文件内容 |
H
huangjie 已提交
2445

H
huangjie 已提交
2446 2447
**错误码:**

2448 2449
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
2450 2451
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
2452 2453
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
H
huangjie 已提交
2454

H
huangjie 已提交
2455
**示例:** 
H
HelloCrease 已提交
2456
  ```ts
F
fangyunzhong 已提交
2457 2458
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
2459
  try {
F
fangyunzhong 已提交
2460
    this.context.resourceManager.getMediaByName("test", 120).then((value: Uint8Array) => {
2461
      let media = value;
F
fangyunzhong 已提交
2462
    }).catch((error: BusinessError) => {
2463
      console.error(`promise getMediaByName failed, error code: ${error.code}, message: ${error.message}.`);
H
huangjie 已提交
2464 2465
    });
  } catch (error) {
F
fangyunzhong 已提交
2466 2467 2468
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getMediaByName failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
2469
  }
H
huangjie 已提交
2470 2471
  ```

2472
### getMediaContentBase64Sync<sup>10+</sup>
H
huangjie 已提交
2473

2474
getMediaContentBase64Sync(resId: number, density?: number): string
H
huangjie 已提交
2475

2476
用户获取指定资源ID对应的默认或指定的屏幕密度图片资源Base64编码,使用同步方式返回字符串。
H
huangjie 已提交
2477 2478 2479 2480

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
2481

2482 2483 2484 2485
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |
| [density](#screendensity) | number | 否    | 资源获取需要的屏幕密度,0或缺省表示默认屏幕密度 |
H
huangjie 已提交
2486

H
huangjie 已提交
2487 2488
**返回值:**

2489 2490 2491
| 类型                    | 说明          |
| -------- | ----------- |
| string   | 资源ID对应的图片资源Base64编码 |
H
huangjie 已提交
2492

H
huangjie 已提交
2493 2494
**错误码:**

2495 2496
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
2497 2498
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2499 2500
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
H
huangjie 已提交
2501

H
huangjie 已提交
2502
**示例:** 
H
HelloCrease 已提交
2503
  ```ts
F
fangyunzhong 已提交
2504 2505
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
2506
  try {
2507
    this.context.resourceManager.getMediaContentBase64Sync($r('app.media.test').id); // 默认屏幕密度
H
huangjie 已提交
2508
  } catch (error) {
F
fangyunzhong 已提交
2509 2510 2511
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getMediaContentBase64Sync failed, error code: ${code}, message: ${message}.`);
2512 2513 2514 2515 2516
  }

  try {
    this.context.resourceManager.getMediaContentBase64Sync($r('app.media.test').id, 120); // 指定屏幕密度
  } catch (error) {
F
fangyunzhong 已提交
2517 2518 2519
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getMediaContentBase64Sync failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
2520
  }
H
huangjie 已提交
2521 2522
  ```

2523
### getMediaContentBase64Sync<sup>10+</sup>
H
huangjie 已提交
2524

2525
getMediaContentBase64Sync(resource: Resource, density?: number): string
H
huangjie 已提交
2526

2527
用户获取指定resource对象对应的默认或指定的屏幕密度图片资源Base64编码,使用同步方式返回字符串。
H
huangjie 已提交
2528 2529 2530

**系统能力**:SystemCapability.Global.ResourceManager

2531 2532
**模型约束**:此接口仅可在Stage模型下使用。

H
huangjie 已提交
2533
**参数:** 
H
huangjie 已提交
2534

2535 2536 2537 2538 2539 2540 2541 2542 2543 2544
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resource | [Resource](#resource9) | 是    | 资源信息 |
| [density](#screendensity) | number | 否    | 资源获取需要的屏幕密度,0或缺省表示默认屏幕密度 |

**返回值:**

| 类型                    | 说明          |
| --------------------- | ----------- |
| string | resource对象对应的图片资源Base64编码 |
H
huangjie 已提交
2545

H
huangjie 已提交
2546 2547
**错误码:**

2548 2549
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
2550 2551
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2552 2553
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
H
huangjie 已提交
2554

H
huangjie 已提交
2555
**示例:** 
H
HelloCrease 已提交
2556
  ```ts
F
fangyunzhong 已提交
2557
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
2558
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
2559 2560

  let resource: resourceManager.Resource = {
2561 2562 2563 2564
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.media.test').id
  };
H
huangjie 已提交
2565
  try {
2566
    this.context.resourceManager.getMediaContentBase64Sync(resource); // 默认屏幕密度
H
huangjie 已提交
2567
  } catch (error) {
F
fangyunzhong 已提交
2568 2569 2570
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getMediaContentBase64Sync failed, error code: ${code}, message: ${message}.`);
2571 2572 2573 2574 2575
  }

  try {
    this.context.resourceManager.getMediaContentBase64Sync(resource, 120); // 指定屏幕密度
  } catch (error) {
F
fangyunzhong 已提交
2576 2577 2578
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getMediaContentBase64Sync failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
2579
  }
H
huangjie 已提交
2580 2581
  ```

F
fangyunzhong 已提交
2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613
### getMediaBase64ByNameSync<sup>10+</sup>

getMediaBase64ByNameSync(resName: string, density?: number): string

用户获取指定资源名称对应的默认或指定的屏幕密度图片资源Base64编码,使用同步方式返回字符串。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 

| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resName | string | 是    | 资源名称 |
| [density](#screendensity) | number | 否    | 资源获取需要的屏幕密度,0或缺省表示默认屏幕密度 |

**返回值:**

| 类型                    | 说明          |
| --------------------- | ----------- |
| string | 资源名称对应的图片资源Base64编码 |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001003  | If the resName invalid.                       |
| 9001004  | If the resource not found by resName.         |

**示例:** 
  ```ts
F
fangyunzhong 已提交
2614 2615
  import { BusinessError } from '@ohos.base';

F
fangyunzhong 已提交
2616 2617 2618
  try {
    this.context.resourceManager.getMediaBase64ByNameSync("test"); // 默认屏幕密度
  } catch (error) {
F
fangyunzhong 已提交
2619 2620 2621
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getMediaBase64ByNameSync failed, error code: ${code}, message: ${message}.`);
F
fangyunzhong 已提交
2622 2623 2624 2625 2626
  }

  try {
    this.context.resourceManager.getMediaBase64ByNameSync("test", 120); // 指定屏幕密度
  } catch (error) {
F
fangyunzhong 已提交
2627 2628 2629
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getMediaBase64ByNameSync failed, error code: ${code}, message: ${message}.`);
F
fangyunzhong 已提交
2630 2631 2632
  }
  ```

2633
### getMediaContentBase64<sup>9+</sup>
Z
zt147369 已提交
2634

2635
getMediaContentBase64(resId: number, callback: AsyncCallback&lt;string&gt;): void
Z
zt147369 已提交
2636

2637
用户获取指定资源ID对应的图片资源Base64编码,使用callback形式返回字符串。
Z
zt147369 已提交
2638 2639 2640

**系统能力**:SystemCapability.Global.ResourceManager

2641
**参数:** Content
Z
zt147369 已提交
2642

2643 2644 2645 2646
| 参数名      | 类型                          | 必填   | 说明                       |
| -------- | --------------------------- | ---- | ------------------------ |
| resId    | number                      | 是    | 资源ID值                    |
| callback | AsyncCallback&lt;string&gt; | 是    | 异步回调,用于返回获取的图片资源Base64编码 |
Z
zt147369 已提交
2647 2648 2649

**错误码:**

2650 2651
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

Z
zt147369 已提交
2652 2653
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2654 2655
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
Z
zt147369 已提交
2656 2657 2658

**示例:** 
  ```ts
F
fangyunzhong 已提交
2659 2660
  import { BusinessError } from '@ohos.base';

Z
zt147369 已提交
2661
  try {
2662 2663 2664 2665 2666 2667
    this.context.resourceManager.getMediaContentBase64($r('app.media.test').id, (error, value) => {
      if (error != null) {
        console.log("error is " + error);
      } else {
        let media = value;
      }
Z
zt147369 已提交
2668 2669
    });
  } catch (error) {
F
fangyunzhong 已提交
2670 2671 2672
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getMediaContentBase64 failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
2673 2674 2675
  }
  ```

2676
### getMediaContentBase64<sup>10+</sup>
H
huangjie 已提交
2677

2678
getMediaContentBase64(resId: number, density: number, callback: AsyncCallback&lt;string&gt;): void
H
huangjie 已提交
2679

2680
用户获取指定资源ID对应的指定屏幕密度图片资源Base64编码,使用callback形式返回字符串。
H
huangjie 已提交
2681 2682 2683 2684

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
2685

2686 2687 2688 2689 2690
| 参数名      | 类型                          | 必填   | 说明                       |
| -------- | --------------------------- | ---- | ------------------------ |
| resId    | number                      | 是    | 资源ID值                    |
| [density](#screendensity)  | number        | 是    | 资源获取需要的屏幕密度,0表示默认屏幕密度    |
| callback | AsyncCallback&lt;string&gt; | 是    | 异步回调,用于返回获取的图片资源Base64编码 |
H
huangjie 已提交
2691

H
huangjie 已提交
2692 2693
**错误码:**

2694 2695
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
2696 2697
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2698 2699
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
H
huangjie 已提交
2700

H
huangjie 已提交
2701
**示例:** 
H
HelloCrease 已提交
2702
  ```ts
F
fangyunzhong 已提交
2703 2704
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
2705
  try {
2706 2707 2708 2709
    this.context.resourceManager.getMediaContentBase64($r('app.media.test').id, 120, (error, value) => {
      if (error != null) {
        console.error(`callback getMediaContentBase64 failed, error code: ${error.code}, message: ${error.message}.`);
      } else {
H
huangjie 已提交
2710
        let media = value;
2711
      }
H
huangjie 已提交
2712 2713
    });
  } catch (error) {
F
fangyunzhong 已提交
2714 2715 2716
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getMediaContentBase64 failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
2717
  }
H
huangjie 已提交
2718 2719
  ```

2720
### getMediaContentBase64<sup>9+</sup>
Z
zt147369 已提交
2721

2722
getMediaContentBase64(resId: number): Promise&lt;string&gt;
Z
zt147369 已提交
2723

2724
用户获取指定资源ID对应的图片资源Base64编码,使用Promise形式返回字符串。
Z
zt147369 已提交
2725 2726 2727 2728 2729

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 

2730 2731 2732
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |
Z
zt147369 已提交
2733 2734 2735

**返回值:**

2736 2737 2738
| 类型                    | 说明                   |
| --------------------- | -------------------- |
| Promise&lt;string&gt; | 资源ID值对应的图片资源Base64编码 |
Z
zt147369 已提交
2739 2740 2741

**错误码:**

2742 2743
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

Z
zt147369 已提交
2744 2745
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2746 2747
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
Z
zt147369 已提交
2748 2749 2750

**示例:** 
  ```ts
F
fangyunzhong 已提交
2751 2752
  import { BusinessError } from '@ohos.base';

Z
zt147369 已提交
2753
  try {
F
fangyunzhong 已提交
2754
    this.context.resourceManager.getMediaContentBase64($r('app.media.test').id).then((value: string) => {
2755
      let media = value;
F
fangyunzhong 已提交
2756
    }).catch((error: BusinessError) => {
2757
      console.log("getMediaContentBase64 promise error is " + error);
Z
zt147369 已提交
2758 2759
    });
  } catch (error) {
F
fangyunzhong 已提交
2760 2761 2762
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getMediaContentBase64 failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
2763 2764 2765
  }
  ```

2766
### getMediaContentBase64<sup>10+</sup>
H
huangjie 已提交
2767

2768
getMediaContentBase64(resId: number, density: number): Promise&lt;string&gt;
H
huangjie 已提交
2769

2770
用户获取指定资源ID对应的指定屏幕密度图片资源Base64编码,使用Promise形式返回字符串。
H
huangjie 已提交
2771 2772 2773 2774

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
2775

2776 2777 2778 2779 2780 2781 2782 2783 2784 2785
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |
| [density](#screendensity)  | number                          | 是    | 资源获取需要的屏幕密度,0表示默认屏幕密度    |

**返回值:**

| 类型                    | 说明                   |
| --------------------- | -------------------- |
| Promise&lt;string&gt; | 资源ID值对应的图片资源Base64编码 |
H
huangjie 已提交
2786

H
huangjie 已提交
2787 2788
**错误码:**

2789 2790
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
2791 2792
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2793 2794
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
H
huangjie 已提交
2795

H
huangjie 已提交
2796
**示例:** 
H
HelloCrease 已提交
2797
  ```ts
F
fangyunzhong 已提交
2798 2799
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
2800
  try {
F
fangyunzhong 已提交
2801
    this.context.resourceManager.getMediaContentBase64($r('app.media.test').id, 120).then((value: string) => {
2802
      let media = value;
F
fangyunzhong 已提交
2803
    }).catch((error: BusinessError) => {
2804
      console.error(`promise getMediaContentBase64 failed, error code: ${error.code}, message: ${error.message}.`);
H
huangjie 已提交
2805 2806
    });
  } catch (error) {
F
fangyunzhong 已提交
2807 2808 2809
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getMediaContentBase64 failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
2810
  }
H
huangjie 已提交
2811 2812
  ```

2813
### getMediaContentBase64<sup>9+</sup>
Z
zt147369 已提交
2814

2815
getMediaContentBase64(resource: Resource, callback: AsyncCallback&lt;string&gt;): void
Z
zt147369 已提交
2816

2817
用户获取指定resource对象对应的图片资源Base64编码,使用callback形式返回字符串。
Z
zt147369 已提交
2818 2819 2820

**系统能力**:SystemCapability.Global.ResourceManager

2821 2822 2823
**模型约束**:此接口仅可在Stage模型下使用。

**参数:**
Z
zt147369 已提交
2824 2825 2826

| 参数名      | 类型                          | 必填   | 说明                       |
| -------- | --------------------------- | ---- | ------------------------ |
2827
| resource | [Resource](#resource9)      | 是    | 资源信息                     |
Z
zt147369 已提交
2828 2829 2830 2831
| callback | AsyncCallback&lt;string&gt; | 是    | 异步回调,用于返回获取的图片资源Base64编码 |

**错误码:**

2832 2833
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

Z
zt147369 已提交
2834 2835
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2836 2837
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
Z
zt147369 已提交
2838 2839 2840

**示例:** 
  ```ts
F
fangyunzhong 已提交
2841
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
2842
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
2843 2844

  let resource: resourceManager.Resource = {
2845 2846 2847 2848
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.media.test').id
  };
Z
zt147369 已提交
2849
  try {
2850 2851 2852 2853 2854 2855
    this.context.resourceManager.getMediaContentBase64(resource, (error, value) => {
      if (error != null) {
        console.log("error is " + error);
      } else {
        let media = value;
      }
Z
zt147369 已提交
2856 2857
    });
  } catch (error) {
F
fangyunzhong 已提交
2858 2859 2860
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getMediaContentBase64 failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
2861 2862 2863
  }
  ```

2864
### getMediaContentBase64<sup>10+</sup>
H
huangjie 已提交
2865

2866
getMediaContentBase64(resource: Resource, density: number, callback: AsyncCallback&lt;string&gt;): void
H
huangjie 已提交
2867

2868
用户获取指定resource对象对应的指定屏幕密度图片资源Base64编码,使用callback形式返回字符串。
H
huangjie 已提交
2869 2870 2871

**系统能力**:SystemCapability.Global.ResourceManager

2872
**模型约束**:此接口仅可在Stage模型下使用。
H
huangjie 已提交
2873

2874
**参数:**
H
huangjie 已提交
2875

2876 2877 2878 2879 2880
| 参数名      | 类型                          | 必填   | 说明                       |
| -------- | --------------------------- | ---- | ------------------------ |
| resource | [Resource](#resource9)      | 是    | 资源信息                     |
| [density](#screendensity)  | number        | 是    | 资源获取需要的屏幕密度,0表示默认屏幕密度    |
| callback | AsyncCallback&lt;string&gt; | 是    | 异步回调,用于返回获取的图片资源Base64编码 |
H
huangjie 已提交
2881

H
huangjie 已提交
2882 2883
**错误码:**

2884 2885
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
2886 2887
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2888 2889
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
H
huangjie 已提交
2890

H
huangjie 已提交
2891
**示例:** 
H
HelloCrease 已提交
2892
  ```ts
F
fangyunzhong 已提交
2893
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
2894
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
2895 2896

  let resource: resourceManager.Resource = {
2897 2898 2899 2900
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.media.test').id
  };
H
huangjie 已提交
2901
  try {
2902 2903 2904 2905
    this.context.resourceManager.getMediaContentBase64(resource, 120, (error, value) => {
      if (error != null) {
        console.error(`callback getMediaContentBase64 failed, error code: ${error.code}, message: ${error.message}.`);
      } else {
H
huangjie 已提交
2906
        let media = value;
2907
      }
H
huangjie 已提交
2908 2909
    });
  } catch (error) {
F
fangyunzhong 已提交
2910 2911 2912
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getMediaContentBase64 failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
2913
  }
H
huangjie 已提交
2914 2915
  ```

2916
### getMediaContentBase64<sup>9+</sup>
Z
zt147369 已提交
2917

2918
getMediaContentBase64(resource: Resource): Promise&lt;string&gt;
Z
zt147369 已提交
2919

2920
用户获取指定resource对象对应的图片资源Base64编码,使用Promise形式返回字符串。
Z
zt147369 已提交
2921 2922 2923

**系统能力**:SystemCapability.Global.ResourceManager

2924 2925
**模型约束**:此接口仅可在Stage模型下使用。

Z
zt147369 已提交
2926 2927
**参数:** 

2928 2929 2930
| 参数名      | 类型                     | 必填   | 说明   |
| -------- | ---------------------- | ---- | ---- |
| resource | [Resource](#resource9) | 是    | 资源信息 |
Z
zt147369 已提交
2931 2932 2933

**返回值:**

2934 2935 2936
| 类型                    | 说明                        |
| --------------------- | ------------------------- |
| Promise&lt;string&gt; | resource对象对应的图片资源Base64编码 |
Z
zt147369 已提交
2937 2938 2939

**错误码:**

2940 2941
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

Z
zt147369 已提交
2942 2943
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2944 2945
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
Z
zt147369 已提交
2946 2947 2948

**示例:** 
  ```ts
F
fangyunzhong 已提交
2949 2950 2951 2952
  import resourceManager from '@ohos.resourceManager';
  import { BusinessError } from '@ohos.base';

  let resource: resourceManager.Resource = {
2953 2954 2955 2956
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.media.test').id
  };
Z
zt147369 已提交
2957
  try {
F
fangyunzhong 已提交
2958
    this.context.resourceManager.getMediaContentBase64(resource).then((value: string) => {
2959
      let media = value;
F
fangyunzhong 已提交
2960
    }).catch((error: BusinessError) => {
2961
      console.log("getMediaContentBase64 promise error is " + error);
Z
zt147369 已提交
2962 2963
    });
  } catch (error) {
F
fangyunzhong 已提交
2964 2965 2966
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getMediaContentBase64 failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
2967 2968 2969
  }
  ```

2970
### getMediaContentBase64<sup>10+</sup>
H
huangjie 已提交
2971

2972
getMediaContentBase64(resource: Resource, density: number): Promise&lt;string&gt;
H
huangjie 已提交
2973

2974
用户获取指定resource对象对应的指定屏幕密度图片资源Base64编码,使用Promise形式返回字符串。
H
huangjie 已提交
2975 2976 2977

**系统能力**:SystemCapability.Global.ResourceManager

2978 2979
**模型约束**:此接口仅可在Stage模型下使用。

H
huangjie 已提交
2980
**参数:** 
H
huangjie 已提交
2981

2982 2983 2984 2985 2986 2987 2988 2989 2990 2991
| 参数名      | 类型                     | 必填   | 说明   |
| -------- | ---------------------- | ---- | ---- |
| resource | [Resource](#resource9) | 是    | 资源信息 |
| [density](#screendensity)  | number                          | 是    | 资源获取需要的屏幕密度,0表示默认屏幕密度    |

**返回值:**

| 类型                    | 说明                        |
| --------------------- | ------------------------- |
| Promise&lt;string&gt; | resource对象对应的图片资源Base64编码 |
H
huangjie 已提交
2992

H
huangjie 已提交
2993 2994
**错误码:**

2995 2996
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
2997 2998
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
2999 3000
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
H
huangjie 已提交
3001

H
huangjie 已提交
3002
**示例:** 
H
HelloCrease 已提交
3003
  ```ts
F
fangyunzhong 已提交
3004 3005 3006 3007
  import resourceManager from '@ohos.resourceManager';
  import { BusinessError } from '@ohos.base';

  let resource: resourceManager.Resource = {
3008 3009 3010 3011
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.media.test').id
  };
H
huangjie 已提交
3012
  try {
F
fangyunzhong 已提交
3013
    this.context.resourceManager.getMediaContentBase64(resource, 120).then((value: string) => {
3014
      let media = value;
F
fangyunzhong 已提交
3015
    }).catch((error: BusinessError) => {
3016
      console.error(`promise getMediaContentBase64 failed, error code: ${error.code}, message: ${error.message}.`);
H
huangjie 已提交
3017 3018
    });
  } catch (error) {
F
fangyunzhong 已提交
3019 3020 3021
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getMediaContentBase64 failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3022
  }
H
huangjie 已提交
3023 3024
  ```

3025
### getMediaBase64ByName<sup>9+</sup>
H
huangjie 已提交
3026

3027
getMediaBase64ByName(resName: string, callback: AsyncCallback&lt;string&gt;): void
H
huangjie 已提交
3028

3029
用户获取指定资源名称对应的图片资源Base64编码,使用callback形式返回字符串。
H
huangjie 已提交
3030 3031 3032 3033

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
3034

3035 3036 3037 3038
| 参数名      | 类型                          | 必填   | 说明                       |
| -------- | --------------------------- | ---- | ------------------------ |
| resName  | string                      | 是    | 资源名称                     |
| callback | AsyncCallback&lt;string&gt; | 是    | 异步回调,用于返回获取的图片资源Base64编码 |
H
huangjie 已提交
3039

H
huangjie 已提交
3040 3041
**错误码:**

3042 3043
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
3044 3045
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
3046 3047
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
H
huangjie 已提交
3048

H
huangjie 已提交
3049
**示例:** 
H
HelloCrease 已提交
3050
  ```ts
F
fangyunzhong 已提交
3051 3052
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
3053
  try {
3054 3055 3056 3057 3058 3059
    this.context.resourceManager.getMediaBase64ByName("test", (error, value) => {
      if (error != null) {
        console.log("error is " + error);
      } else {
        let media = value;
      }
H
huangjie 已提交
3060 3061
    });
  } catch (error) {
F
fangyunzhong 已提交
3062 3063 3064
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getMediaBase64ByName failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3065
  }
H
huangjie 已提交
3066 3067
  ```

3068
### getMediaBase64ByName<sup>10+</sup>
H
huangjie 已提交
3069

3070
getMediaBase64ByName(resName: string, density: number, callback: AsyncCallback&lt;string&gt;): void
H
huangjie 已提交
3071

3072
用户获取指定资源名称对应的指定屏幕密度图片资源Base64编码,使用callback形式返回字符串。
H
huangjie 已提交
3073 3074 3075 3076

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
3077

3078 3079 3080 3081 3082
| 参数名      | 类型                          | 必填   | 说明                       |
| -------- | --------------------------- | ---- | ------------------------ |
| resName  | string                      | 是    | 资源名称                     |
| [density](#screendensity)  | number        | 是    | 资源获取需要的屏幕密度,0表示默认屏幕密度    |
| callback | AsyncCallback&lt;string&gt; | 是    | 异步回调,用于返回获取的图片资源Base64编码 |
H
huangjie 已提交
3083

H
huangjie 已提交
3084 3085
**错误码:**

3086 3087
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
3088 3089
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
3090 3091
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
H
huangjie 已提交
3092

H
huangjie 已提交
3093
**示例:** 
H
HelloCrease 已提交
3094
  ```ts
F
fangyunzhong 已提交
3095 3096
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
3097
  try {
3098 3099 3100 3101 3102 3103 3104
    this.context.resourceManager.getMediaBase64ByName("test", 120, (error, value) => {
      if (error != null) {
        console.error(`callback getMediaBase64ByName failed, error code: ${error.code}, message: ${error.message}.`);
      } else {
        let media = value;
      }
    });
H
huangjie 已提交
3105
  } catch (error) {
F
fangyunzhong 已提交
3106 3107 3108
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getMediaBase64ByName failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3109
  }
H
huangjie 已提交
3110 3111
  ```

3112
### getMediaBase64ByName<sup>9+</sup>
Z
zt147369 已提交
3113

3114
getMediaBase64ByName(resName: string): Promise&lt;string&gt;
Z
zt147369 已提交
3115

3116
用户获取指定资源名称对应的图片资源Base64编码,使用Promise形式返回字符串。
Z
zt147369 已提交
3117 3118 3119 3120 3121

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 

3122 3123 3124
| 参数名     | 类型     | 必填   | 说明   |
| ------- | ------ | ---- | ---- |
| resName | string | 是    | 资源名称 |
Z
zt147369 已提交
3125 3126 3127

**返回值:**

3128 3129 3130
| 类型                    | 说明                  |
| --------------------- | ------------------- |
| Promise&lt;string&gt; | 资源名称对应的图片资源Base64编码 |
Z
zt147369 已提交
3131 3132 3133

**错误码:**

3134 3135
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

Z
zt147369 已提交
3136
| 错误码ID | 错误信息 |
3137 3138 3139
| -------- | ---------------------------------------- |
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
Z
zt147369 已提交
3140 3141 3142

**示例:** 
  ```ts
F
fangyunzhong 已提交
3143 3144
  import { BusinessError } from '@ohos.base';

Z
zt147369 已提交
3145
  try {
F
fangyunzhong 已提交
3146
    this.context.resourceManager.getMediaBase64ByName("test").then((value: string) => {
3147
      let media = value;
F
fangyunzhong 已提交
3148
    }).catch((error: BusinessError) => {
3149 3150
      console.log("getMediaBase64ByName promise error is " + error);
    });
Z
zt147369 已提交
3151
  } catch (error) {
F
fangyunzhong 已提交
3152 3153 3154
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getMediaBase64ByName failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
3155 3156 3157
  }
  ```

3158
### getMediaBase64ByName<sup>10+</sup>
3159

3160
getMediaBase64ByName(resName: string, density: number): Promise&lt;string&gt;
3161

3162
用户获取指定资源名称对应的指定屏幕密度图片资源Base64编码,使用Promise形式返回字符串。
3163 3164 3165 3166

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
3167

3168 3169 3170 3171
| 参数名     | 类型     | 必填   | 说明   |
| ------- | ------ | ---- | ---- |
| resName | string | 是    | 资源名称 |
| [density](#screendensity)  | number                          | 是    | 资源获取需要的屏幕密度,0表示默认屏幕密度    |
3172

H
huangjie 已提交
3173 3174
**返回值:**

3175 3176 3177
| 类型                    | 说明                  |
| --------------------- | ------------------- |
| Promise&lt;string&gt; | 资源名称对应的图片资源Base64编码 |
3178

H
huangjie 已提交
3179 3180
**错误码:**

3181 3182
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
3183 3184
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
3185 3186
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
H
huangjie 已提交
3187

3188
**示例:** 
H
HelloCrease 已提交
3189
  ```ts
F
fangyunzhong 已提交
3190 3191
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
3192
  try {
F
fangyunzhong 已提交
3193
    this.context.resourceManager.getMediaBase64ByName("test", 120).then((value: string) => {
3194
      let media = value;
F
fangyunzhong 已提交
3195
    }).catch((error: BusinessError) => {
3196 3197
      console.error(`promise getMediaBase64ByName failed, error code: ${error.code}, message: ${error.message}.`);
    });
H
huangjie 已提交
3198
  } catch (error) {
F
fangyunzhong 已提交
3199 3200 3201
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getMediaBase64ByName failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3202
  }
3203 3204
  ```

3205
### getDrawableDescriptor<sup>10+</sup>
Z
zt147369 已提交
3206

3207
getDrawableDescriptor(resId: number, density?: number): DrawableDescriptor;
Z
zt147369 已提交
3208

3209
用户获取指定资源ID对应的DrawableDescriptor对象,使用同步方式返回资源对应的DrawableDescriptor,用于图标的显示。
Z
zt147369 已提交
3210 3211 3212

**系统能力**:SystemCapability.Global.ResourceManager

3213
**参数:**
Z
zt147369 已提交
3214

3215 3216 3217 3218
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |
| [density](#screendensity) | number | 否    | 资源获取需要的屏幕密度,0或缺省表示默认屏幕密度 |
Z
zt147369 已提交
3219 3220 3221

**返回值:**

3222 3223 3224
| 类型     | 说明         |
| ------ | ---------- |
| DrawableDescriptor | 资源ID值对应的DrawableDescriptor对象 |
Z
zt147369 已提交
3225 3226 3227

**错误码:**

3228 3229
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

Z
zt147369 已提交
3230 3231 3232 3233 3234
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |

3235
**示例:**
Z
zt147369 已提交
3236
  ```ts
F
fangyunzhong 已提交
3237 3238
  import { BusinessError } from '@ohos.base';

Z
zt147369 已提交
3239
  try {
3240
    this.context.resourceManager.getDrawableDescriptor($r('app.media.icon').id);
Z
zt147369 已提交
3241
  } catch (error) {
F
fangyunzhong 已提交
3242 3243 3244
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getDrawableDescriptor failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
3245
  }
3246 3247 3248
  try {
    this.context.resourceManager.getDrawableDescriptor($r('app.media.icon').id, 120);
  } catch (error) {
F
fangyunzhong 已提交
3249 3250 3251
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getDrawableDescriptor failed, error code: ${code}, message: ${message}.`);
3252 3253
  }
  ```
Z
zt147369 已提交
3254

3255
### getDrawableDescriptor<sup>10+</sup>
H
huangjie 已提交
3256

3257
getDrawableDescriptor(resource: Resource, density?: number): DrawableDescriptor;
H
huangjie 已提交
3258

3259
用户获取指定resource对应的DrawableDescriptor对象,使用同步方式返回资源对应的DrawableDescriptor,用于图标的显示。
H
huangjie 已提交
3260 3261 3262

**系统能力**:SystemCapability.Global.ResourceManager

3263
**模型约束**:此接口仅可在Stage模型下使用。
H
huangjie 已提交
3264

3265 3266 3267 3268 3269 3270
**参数:**

| 参数名      | 类型                     | 必填   | 说明   |
| -------- | ---------------------- | ---- | ---- |
| resource | [Resource](#resource9) | 是    | 资源信息 |
| [density](#screendensity) | number | 否    | 资源获取需要的屏幕密度,0或缺省表示默认屏幕密度 |
H
huangjie 已提交
3271

H
huangjie 已提交
3272 3273
**返回值:**

3274 3275 3276
| 类型      | 说明                |
| ------- | ----------------- |
| DrawableDescriptor | 资源ID值对应的DrawableDescriptor对象 |
H
huangjie 已提交
3277

H
huangjie 已提交
3278 3279
**错误码:**

3280 3281
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
3282 3283
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
3284 3285
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
H
huangjie 已提交
3286

3287
**示例:**
H
HelloCrease 已提交
3288
  ```ts
F
fangyunzhong 已提交
3289
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
3290
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
3291 3292

  let resource: resourceManager.Resource = {
3293 3294 3295 3296
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.media.icon').id
  };
H
huangjie 已提交
3297
  try {
3298
    this.context.resourceManager.getDrawableDescriptor(resource);
H
huangjie 已提交
3299
  } catch (error) {
F
fangyunzhong 已提交
3300 3301 3302
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getDrawableDescriptor failed, error code: ${code}, message: ${message}.`);
3303 3304 3305 3306
  }
  try {
    this.context.resourceManager.getDrawableDescriptor(resource, 120);
  } catch (error) {
F
fangyunzhong 已提交
3307 3308 3309
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getDrawableDescriptor failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3310
  }
H
huangjie 已提交
3311 3312
  ```

3313
### getDrawableDescriptorByName<sup>10+</sup>
Z
zt147369 已提交
3314

3315
getDrawableDescriptorByName(resName: string, density?: number): DrawableDescriptor;
Z
zt147369 已提交
3316

3317
用户获取指定资源名称对应的DrawableDescriptor对象,使用同步方式返回资源对应的DrawableDescriptor,用于图标的显示。
Z
zt147369 已提交
3318 3319 3320

**系统能力**:SystemCapability.Global.ResourceManager

3321
**参数:**
Z
zt147369 已提交
3322 3323 3324 3325

| 参数名     | 类型     | 必填   | 说明   |
| ------- | ------ | ---- | ---- |
| resName | string | 是    | 资源名称 |
3326
| [density](#screendensity) | number | 否    | 资源获取需要的屏幕密度,0或缺省表示默认屏幕密度 |
Z
zt147369 已提交
3327 3328 3329

**返回值:**

3330 3331 3332
| 类型     | 说明        |
| ------ | --------- |
| DrawableDescriptor | 资源ID值对应的DrawableDescriptor对象 |
Z
zt147369 已提交
3333 3334 3335

**错误码:**

3336 3337
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

Z
zt147369 已提交
3338 3339 3340 3341 3342
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |

3343
**示例:**
Z
zt147369 已提交
3344
  ```ts
F
fangyunzhong 已提交
3345 3346
  import { BusinessError } from '@ohos.base';

Z
zt147369 已提交
3347
  try {
3348
    this.context.resourceManager.getDrawableDescriptorByName('icon');
Z
zt147369 已提交
3349
  } catch (error) {
F
fangyunzhong 已提交
3350 3351 3352
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getDrawableDescriptorByName failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
3353
  }
3354 3355 3356
  try {
    this.context.resourceManager.getDrawableDescriptorByName('icon', 120);
  } catch (error) {
F
fangyunzhong 已提交
3357 3358 3359
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getDrawableDescriptorByName failed, error code: ${code}, message: ${message}.`);
3360 3361
  }
  ```
Z
zt147369 已提交
3362

H
huangjie 已提交
3363
### getBoolean<sup>9+</sup>
H
huangjie 已提交
3364 3365 3366 3367 3368 3369 3370 3371

getBoolean(resId: number): boolean

使用同步方式,返回获取指定资源ID对应的布尔结果。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
3372

H
huangjie 已提交
3373 3374 3375 3376
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |

H
huangjie 已提交
3377 3378
**返回值:**

H
HelloCrease 已提交
3379 3380
| 类型      | 说明           |
| ------- | ------------ |
H
huangjie 已提交
3381 3382
| boolean | 资源ID值对应的布尔结果 |

H
huangjie 已提交
3383 3384
**错误码:**

3385 3386
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
3387 3388
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
3389 3390 3391
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
3392

H
huangjie 已提交
3393
**示例:** 
H
HelloCrease 已提交
3394
  ```ts
F
fangyunzhong 已提交
3395 3396
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
3397 3398 3399
  try {
    this.context.resourceManager.getBoolean($r('app.boolean.boolean_test').id);
  } catch (error) {
F
fangyunzhong 已提交
3400 3401 3402
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getBoolean failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3403
  }
H
huangjie 已提交
3404
  ```
3405 3406 3407 3408 3409 3410 3411 3412
### getBoolean<sup>9+</sup>

getBoolean(resource: Resource): boolean

使用同步方式,返回获取指定resource对象对应的布尔结果。

**系统能力**:SystemCapability.Global.ResourceManager

Z
zt147369 已提交
3413 3414
**模型约束**:此接口仅可在Stage模型下使用。

3415
**参数:** 
H
huangjie 已提交
3416

H
HelloCrease 已提交
3417 3418
| 参数名      | 类型                     | 必填   | 说明   |
| -------- | ---------------------- | ---- | ---- |
3419
| resource | [Resource](#resource9) | 是    | 资源信息 |
3420

H
huangjie 已提交
3421 3422
**返回值:**

H
HelloCrease 已提交
3423 3424
| 类型      | 说明                |
| ------- | ----------------- |
3425 3426
| boolean | resource对象对应的布尔结果 |

H
huangjie 已提交
3427 3428
**错误码:**

3429 3430
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
3431 3432
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
3433 3434 3435
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
3436

3437
**示例:** 
H
HelloCrease 已提交
3438
  ```ts
F
fangyunzhong 已提交
3439
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
3440
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
3441 3442

  let resource: resourceManager.Resource = {
3443 3444 3445
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.boolean.boolean_test').id
3446
  };
H
huangjie 已提交
3447 3448 3449
  try {
    this.context.resourceManager.getBoolean(resource);
  } catch (error) {
F
fangyunzhong 已提交
3450 3451 3452
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getBoolean failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3453
  }
3454
  ```
H
huangjie 已提交
3455 3456 3457 3458 3459 3460 3461 3462 3463 3464

### getBooleanByName<sup>9+</sup>

getBooleanByName(resName: string): boolean

使用同步方式,返回获取指定资源名称对应的布尔结果

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
3465

H
HelloCrease 已提交
3466 3467 3468
| 参数名     | 类型     | 必填   | 说明   |
| ------- | ------ | ---- | ---- |
| resName | string | 是    | 资源名称 |
H
huangjie 已提交
3469

H
huangjie 已提交
3470 3471
**返回值:**

H
HelloCrease 已提交
3472 3473
| 类型      | 说明          |
| ------- | ----------- |
H
huangjie 已提交
3474 3475
| boolean | 资源名称对应的布尔结果 |

H
huangjie 已提交
3476 3477
**错误码:**

3478 3479
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
3480 3481
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
3482 3483 3484
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
3485

H
huangjie 已提交
3486
**示例:** 
H
HelloCrease 已提交
3487
  ```ts
F
fangyunzhong 已提交
3488 3489
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
3490 3491 3492
  try {
    this.context.resourceManager.getBooleanByName("boolean_test");
  } catch (error) {
F
fangyunzhong 已提交
3493 3494 3495
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getBooleanByName failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3496
  }
H
huangjie 已提交
3497 3498
  ```

H
huangjie 已提交
3499
### getNumber<sup>9+</sup>
H
huangjie 已提交
3500 3501 3502 3503 3504 3505 3506 3507

getNumber(resId: number): number

用户获取指定资源ID对应的integer数值或者float数值,使用同步方式返回资源对应的数值。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
3508

H
huangjie 已提交
3509 3510 3511 3512
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |

H
huangjie 已提交
3513 3514
**返回值:**

H
HelloCrease 已提交
3515
| 类型     | 说明         |
H
huangjie 已提交
3516
| ------ | ---------- | 
H
huangjie 已提交
3517
| number | 资源ID值对应的数值。Integer对应的是原数值,float对应的是真实像素点值,具体参考示例代码 |
H
huangjie 已提交
3518

H
huangjie 已提交
3519 3520
**错误码:**

3521 3522
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
3523 3524
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
3525 3526 3527
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
3528

H
huangjie 已提交
3529
**示例:** 
H
HelloCrease 已提交
3530
  ```ts
F
fangyunzhong 已提交
3531 3532
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
3533
  try {
H
huangjie 已提交
3534
    this.context.resourceManager.getNumber($r('app.integer.integer_test').id); // integer对应返回的是原数值
H
huangjie 已提交
3535
  } catch (error) {
F
fangyunzhong 已提交
3536 3537 3538
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getNumber failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3539 3540 3541
  }

  try {
H
huangjie 已提交
3542
    this.context.resourceManager.getNumber($r('app.float.float_test').id); // float对应返回的是真实像素点值
H
huangjie 已提交
3543
  } catch (error) {
F
fangyunzhong 已提交
3544 3545 3546
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getNumber failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3547
  }
H
huangjie 已提交
3548 3549
  ```

3550 3551 3552 3553 3554 3555 3556 3557
### getNumber<sup>9+</sup>

getNumber(resource: Resource): number

用户获取指定resource对象对应的integer数值或者float数值,使用同步方式返回资源对应的数值。

**系统能力**:SystemCapability.Global.ResourceManager

Z
zt147369 已提交
3558 3559
**模型约束**:此接口仅可在Stage模型下使用。

3560
**参数:** 
H
huangjie 已提交
3561

H
HelloCrease 已提交
3562 3563
| 参数名      | 类型                     | 必填   | 说明   |
| -------- | ---------------------- | ---- | ---- |
3564
| resource | [Resource](#resource9) | 是    | 资源信息 |
3565

H
huangjie 已提交
3566 3567
**返回值:**

H
HelloCrease 已提交
3568 3569
| 类型     | 说明              |
| ------ | --------------- |
H
huangjie 已提交
3570
| number | resource对象对应的数值。Integer对应的是原数值,float对应的是真实像素点值, 具体参考示例代码 |
3571

H
huangjie 已提交
3572 3573
**错误码:**

3574 3575
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
3576 3577
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
3578 3579 3580
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
3581

3582
**示例:** 
H
HelloCrease 已提交
3583
  ```ts
F
fangyunzhong 已提交
3584
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
3585
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
3586 3587

  let resource: resourceManager.Resource = {
3588 3589 3590
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.integer.integer_test').id
3591
  };
H
huangjie 已提交
3592
  try {
H
huangjie 已提交
3593
    this.context.resourceManager.getNumber(resource);// integer对应返回的是原数值, float对应返回的是真实像素点值
H
huangjie 已提交
3594
  } catch (error) {
F
fangyunzhong 已提交
3595 3596 3597
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getNumber failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3598
  }
3599 3600
  ```

H
huangjie 已提交
3601 3602 3603 3604 3605 3606 3607 3608 3609
### getNumberByName<sup>9+</sup>

getNumberByName(resName: string): number

用户获取指定资源名称对应的integer数值或者float数值,使用同步方式资源对应的数值。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
3610

H
HelloCrease 已提交
3611 3612
| 参数名     | 类型     | 必填   | 说明   |
| ------- | ------ | ---- | ---- |
H
huangjie 已提交
3613 3614
| resName | string | 是    | 资源名称 |

H
huangjie 已提交
3615 3616
**返回值:**

H
HelloCrease 已提交
3617 3618
| 类型     | 说明        |
| ------ | --------- |
H
huangjie 已提交
3619 3620
| number | 资源名称对应的数值 |

H
huangjie 已提交
3621 3622
**错误码:**

3623 3624
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
3625 3626
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
H
huangjie 已提交
3627 3628 3629
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
3630 3631 3632

**示例:** 
  ```ts
F
fangyunzhong 已提交
3633 3634
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
3635 3636 3637
  try {
    this.context.resourceManager.getNumberByName("integer_test");
  } catch (error) {
F
fangyunzhong 已提交
3638 3639 3640
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getNumberByName failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3641 3642 3643 3644 3645
  }

  try {
    this.context.resourceManager.getNumberByName("float_test");
  } catch (error) {
F
fangyunzhong 已提交
3646 3647 3648
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getNumberByName failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3649 3650 3651
  }
  ```

3652
### getColorSync<sup>10+</sup>
H
huangjie 已提交
3653

3654
getColorSync(resId: number) : number;
H
huangjie 已提交
3655

3656
用户获取指定资源ID对应的颜色值,使用同步方式返回其对应的颜色值。
H
huangjie 已提交
3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667

**系统能力**:SystemCapability.Global.ResourceManager

**参数:**

| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |

**返回值:**

3668 3669 3670
| 类型     | 说明          |
| ------ | ----------- |
| number | 资源ID值对应的颜色值(十进制) |
H
huangjie 已提交
3671 3672 3673

**错误码:**

3674 3675
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
3676 3677 3678 3679
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
3680
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
3681 3682 3683

**示例:**
  ```ts
F
fangyunzhong 已提交
3684 3685
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
3686
  try {
3687
    this.context.resourceManager.getColorSync($r('app.color.test').id);
H
huangjie 已提交
3688
  } catch (error) {
F
fangyunzhong 已提交
3689 3690 3691
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getColorSync failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3692 3693 3694
  }
  ```

3695
### getColorSync<sup>10+</sup>
H
huangjie 已提交
3696

3697
getColorSync(resource: Resource): number
H
huangjie 已提交
3698

3699
用户获取指定resource对象对应的颜色值,使用同步方式返回其对应的颜色值。
H
huangjie 已提交
3700 3701 3702

**系统能力**:SystemCapability.Global.ResourceManager

Z
zt147369 已提交
3703 3704
**模型约束**:此接口仅可在Stage模型下使用。

H
huangjie 已提交
3705 3706 3707 3708 3709 3710 3711 3712
**参数:**

| 参数名      | 类型                     | 必填   | 说明   |
| -------- | ---------------------- | ---- | ---- |
| resource | [Resource](#resource9) | 是    | 资源信息 |

**返回值:**

3713 3714 3715
| 类型     | 说明               |
| ------ | ---------------- |
| number | resource对象对应的颜色值(十进制) |
H
huangjie 已提交
3716 3717 3718

**错误码:**

3719 3720
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
3721 3722 3723 3724
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
3725
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
3726 3727 3728

**示例:**
  ```ts
F
fangyunzhong 已提交
3729
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
3730
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
3731 3732

  let resource: resourceManager.Resource = {
3733 3734 3735
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.color.test').id
H
huangjie 已提交
3736 3737
  };
  try {
3738
    this.context.resourceManager.getColorSync(resource);
H
huangjie 已提交
3739
  } catch (error) {
F
fangyunzhong 已提交
3740 3741 3742
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getColorSync failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3743 3744 3745
  }
  ```

3746
### getColorByNameSync<sup>10+</sup>
H
huangjie 已提交
3747

3748
getColorByNameSync(resName: string) : number;
H
huangjie 已提交
3749

3750
用户获取指定资源名称对应的颜色值,使用同步方式返回其对应的颜色值。
H
huangjie 已提交
3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761

**系统能力**:SystemCapability.Global.ResourceManager

**参数:**

| 参数名     | 类型     | 必填   | 说明   |
| ------- | ------ | ---- | ---- |
| resName | string | 是    | 资源名称 |

**返回值:**

3762 3763 3764
| 类型     | 说明         |
| ------ | ---------- |
| number | 资源名称对应的颜色值(十进制) |
H
huangjie 已提交
3765 3766 3767

**错误码:**

3768 3769
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

H
huangjie 已提交
3770 3771 3772 3773
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
3774
| 9001006  | If the resource re-ref too much.            |
H
huangjie 已提交
3775 3776 3777

**示例:**
  ```ts
F
fangyunzhong 已提交
3778 3779
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
3780
  try {
3781
    this.context.resourceManager.getColorByNameSync("test");
H
huangjie 已提交
3782
  } catch (error) {
F
fangyunzhong 已提交
3783 3784 3785
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getColorByNameSync failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3786 3787
  }
  ```
H
huangjie 已提交
3788

H
huangjie 已提交
3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815
### getColor<sup>10+</sup>

getColor(resId: number, callback: AsyncCallback&lt;number&gt;): void;

用户获取指定资源ID对应的颜色值,使用callback形式返回其对应的颜色值。

**系统能力:** SystemCapability.Global.ResourceManager

**参数:**

| 参数名      | 类型                          | 必填   | 说明              |
| -------- | --------------------------- | ---- | --------------- |
| resId    | number                      | 是    | 资源ID值           |
| callback | AsyncCallback&lt;number&gt; | 是    | 异步回调,用于返回获取的颜色值(十进制) |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001001  | If the module resId invalid.             |
| 9001002  | If the resource not found by resId.      |
| 9001006  | If the resource re-ref too much.         |

**示例Stage:**
  ```ts
F
fangyunzhong 已提交
3816 3817
  import { BusinessError } from '@ohos.base';

3818 3819 3820 3821 3822 3823 3824 3825 3826
  try {
    this.context.resourceManager.getColor($r('app.color.test').id, (error, value) => {
      if (error != null) {
        console.log("error is " + error);
      } else {
        let str = value;
      }
    });
  } catch (error) {
F
fangyunzhong 已提交
3827 3828 3829
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getColor failed, error code: ${code}, message: ${message}.`);
3830
  }
H
huangjie 已提交
3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864
  ```

### getColor<sup>10+</sup>

getColor(resId: number): Promise&lt;number&gt;

用户获取指定资源ID对应的颜色值,使用Promise形式返回对应其对应的颜色值。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:**

| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |

**返回值:**

| 类型                    | 说明          |
| --------------------- | ----------- |
| Promise&lt;number&gt; | 资源ID值对应的颜色值(十进制) |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
| 9001006  | If the resource re-ref too much.            |

**示例:**
  ```ts
F
fangyunzhong 已提交
3865 3866
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
3867
  try {
F
fangyunzhong 已提交
3868
    this.context.resourceManager.getColor($r('app.color.test').id).then((value: number) => {
3869
      let str = value;
F
fangyunzhong 已提交
3870
    }).catch((error: BusinessError) => {
3871
      console.log("getColor promise error is " + error);
H
huangjie 已提交
3872 3873
    });
  } catch (error) {
F
fangyunzhong 已提交
3874 3875 3876
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getColor failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887
  }
  ```

### getColor<sup>10+</sup>

getColor(resource: Resource, callback: AsyncCallback&lt;number&gt;): void;

用户获取指定resource对象对应的颜色值,使用callback形式返回其对应的颜色值。

**系统能力:** SystemCapability.Global.ResourceManager

Z
zt147369 已提交
3888 3889
**模型约束**:此接口仅可在Stage模型下使用。

H
huangjie 已提交
3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908
**参数:**

| 参数名      | 类型                          | 必填   | 说明              |
| -------- | --------------------------- | ---- | --------------- |
| resource | [Resource](#resource9)      | 是    | 资源信息            |
| callback | AsyncCallback&lt;number&gt; | 是    | 异步回调,用于返回获取的颜色值(十进制) |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
| 9001006  | If the resource re-ref too much.            |

**示例:**
  ```ts
F
fangyunzhong 已提交
3909
  import resourceManager from '@ohos.resourceManager';
F
fangyunzhong 已提交
3910
  import { BusinessError } from '@ohos.base';
F
fangyunzhong 已提交
3911 3912

  let resource: resourceManager.Resource = {
3913 3914 3915
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.color.test').id
H
huangjie 已提交
3916 3917 3918
  };
  try {
    this.context.resourceManager.getColor(resource, (error, value) => {
3919 3920 3921 3922 3923 3924 3925
      if (error != null) {
        console.log("error is " + error);
      } else {
        let str = value;
      }
    });
  } catch (error) {
F
fangyunzhong 已提交
3926 3927 3928
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getColor failed, error code: ${code}, message: ${message}.`);
3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965
  }
  ```

### getColor<sup>10+</sup>

getColor(resource: Resource): Promise&lt;number&gt;;

用户获取指定resource对象对应的颜色值,使用Promise形式返回其对应的颜色值。

**系统能力**:SystemCapability.Global.ResourceManager

**模型约束**:此接口仅可在Stage模型下使用。

**参数:**

| 参数名      | 类型                     | 必填   | 说明   |
| -------- | ---------------------- | ---- | ---- |
| resource | [Resource](#resource9) | 是    | 资源信息 |

**返回值:**

| 类型                    | 说明               |
| --------------------- | ---------------- |
| Promise&lt;number&gt; | resource对象对应的颜色值(十进制) |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001001  | If the resId invalid.                       |
| 9001002  | If the resource not found by resId.         |
| 9001006  | If the resource re-ref too much.            |

**示例:**
  ```ts
F
fangyunzhong 已提交
3966 3967 3968 3969
  import resourceManager from '@ohos.resourceManager';
  import { BusinessError } from '@ohos.base';

  let resource: resourceManager.Resource = {
3970 3971 3972 3973 3974
    bundleName: "com.example.myapplication",
    moduleName: "entry",
    id: $r('app.color.test').id
  };
  try {
F
fangyunzhong 已提交
3975
    this.context.resourceManager.getColor(resource).then((value: number) => {
3976
      let str = value;
F
fangyunzhong 已提交
3977
    }).catch((error: BusinessError) => {
3978 3979 3980
      console.log("getColor promise error is " + error);
    });
  } catch (error) {
F
fangyunzhong 已提交
3981 3982 3983
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getColor failed, error code: ${code}, message: ${message}.`);
3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013
  }
  ```

### getColorByName<sup>10+</sup>

getColorByName(resName: string, callback: AsyncCallback&lt;number&gt;): void

用户获取指定资源名称对应的颜色值,使用callback形式返回其对应的颜色值。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:**

| 参数名      | 类型                          | 必填   | 说明              |
| -------- | --------------------------- | ---- | --------------- |
| resName  | string                      | 是    | 资源名称            |
| callback | AsyncCallback&lt;number&gt; | 是    | 异步回调,用于返回获取的颜色值(十进制) |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
| 9001006  | If the resource re-ref too much.            |

**示例:**
  ```ts
F
fangyunzhong 已提交
4014 4015
  import { BusinessError } from '@ohos.base';

4016 4017 4018 4019 4020 4021 4022 4023 4024
  try {
    this.context.resourceManager.getColorByName("test", (error, value) => {
      if (error != null) {
        console.log("error is " + error);
      } else {
        let string = value;
      }
    });
  } catch (error) {
F
fangyunzhong 已提交
4025 4026 4027
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getColorByName failed, error code: ${code}, message: ${message}.`);
4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062
  }
  ```

### getColorByName<sup>10+</sup>

getColorByName(resName: string): Promise&lt;number&gt;

用户获取指定资源名称对应的颜色值,使用Promise形式返回其对应的颜色值。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:**

| 参数名     | 类型     | 必填   | 说明   |
| ------- | ------ | ---- | ---- |
| resName | string | 是    | 资源名称 |

**返回值:**

| 类型                    | 说明         |
| --------------------- | ---------- |
| Promise&lt;number&gt; | 资源名称对应的颜色值(十进制) |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001003  | If the resName invalid.                     |
| 9001004  | If the resource not found by resName.       |
| 9001006  | If the resource re-ref too much.            |

**示例:**
  ```ts
F
fangyunzhong 已提交
4063 4064
  import { BusinessError } from '@ohos.base';

4065
  try {
F
fangyunzhong 已提交
4066
    this.context.resourceManager.getColorByName("test").then((value: number) => {
4067
      let string = value;
F
fangyunzhong 已提交
4068
    }).catch((error: BusinessError) => {
4069 4070 4071
      console.log("getColorByName promise error is " + error);
    });
  } catch (error) {
F
fangyunzhong 已提交
4072 4073 4074
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getColorByName failed, error code: ${code}, message: ${message}.`);
4075 4076 4077
  }
  ```

4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107
### getRawFileContentSync<sup>10+</sup>

getRawFileContentSync(path: string): Uint8Array

用户获取resources/rawfile目录下对应的rawfile文件内容,使用同步形式返回字节数组。

**系统能力:** SystemCapability.Global.ResourceManager

**参数:**

| 参数名      | 类型                              | 必填   | 说明                      |
| -------- | ------------------------------- | ---- | ----------------------- |
| path     | string                          | 是    | rawfile文件路径             |

**返回值:**

| 类型                    | 说明         |
| --------------------- | ---------- |
| Uint8Array | 返回获取的rawfile文件内容 |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001005  | If the resource not found by path.          |

**示例:**
  ```ts
F
fangyunzhong 已提交
4108 4109
  import { BusinessError } from '@ohos.base';

4110 4111 4112
  try {
    this.context.resourceManager.getRawFileContentSync("test.txt");
  } catch (error) {
F
fangyunzhong 已提交
4113 4114 4115
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getRawFileContentSync failed, error code: ${code}, message: ${message}.`);
4116 4117 4118
  }
  ```

4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143
### getRawFileContent<sup>9+</sup>

getRawFileContent(path: string, callback: AsyncCallback&lt;Uint8Array&gt;): void

用户获取resources/rawfile目录下对应的rawfile文件内容,使用callback形式返回字节数组。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 

| 参数名      | 类型                              | 必填   | 说明                      |
| -------- | ------------------------------- | ---- | ----------------------- |
| path     | string                          | 是    | rawfile文件路径             |
| callback | AsyncCallback&lt;Uint8Array&gt; | 是    | 异步回调,用于返回获取的rawfile文件内容 |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001005  | If the resource not found by path.          |

**示例:** 
  ```ts
F
fangyunzhong 已提交
4144 4145
  import { BusinessError } from '@ohos.base';

4146
  try {
F
fangyunzhong 已提交
4147
    this.context.resourceManager.getRawFileContent("test.txt", (error, value) => {
4148 4149 4150 4151 4152 4153 4154
      if (error != null) {
        console.log("error is " + error);
      } else {
        let rawFile = value;
      }
    });
  } catch (error) {
F
fangyunzhong 已提交
4155 4156 4157
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getRawFileContent failed, error code: ${code}, message: ${message}.`);
4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190
  }
  ```

### getRawFileContent<sup>9+</sup>

getRawFileContent(path: string): Promise&lt;Uint8Array&gt;

用户获取resources/rawfile目录下对应的rawfile文件内容,使用Promise形式返回字节数组。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 

| 参数名  | 类型     | 必填   | 说明          |
| ---- | ------ | ---- | ----------- |
| path | string | 是    | rawfile文件路径 |

**返回值:**

| 类型                        | 说明          |
| ------------------------- | ----------- |
| Promise&lt;Uint8Array&gt; | rawfile文件内容 |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001005  | If the resource not found by path.          |

**示例:** 
  ```ts
F
fangyunzhong 已提交
4191 4192
  import { BusinessError } from '@ohos.base';

4193
  try {
F
fangyunzhong 已提交
4194
    this.context.resourceManager.getRawFileContent("test.txt").then((value: Uint8Array) => {
4195
      let rawFile = value;
F
fangyunzhong 已提交
4196
    }).catch((error: BusinessError) => {
4197 4198 4199
      console.log("getRawFileContent promise error is " + error);
    });
  } catch (error) {
F
fangyunzhong 已提交
4200 4201 4202
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getRawFileContent failed, error code: ${code}, message: ${message}.`);
4203 4204 4205
  }
  ```

4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235
### getRawFileListSync<sup>10+</sup>

getRawFileListSync(path: string): Array\<string\>

用户获取resources/rawfile目录下文件夹及文件列表,使用同步形式返回文件列表的字符串数组。

**系统能力:** SystemCapability.Global.ResourceManager

**参数:**

| 参数名      | 类型                              | 必填   | 说明                      |
| -------- | ------------------------------- | ---- | ----------------------- |
| path     | string                          | 是    | rawfile文件夹路径             |

**返回值:**

| 类型                        | 说明          |
| ------------------------- | ----------- |
| Array\<string\> | rawfile文件夹下的列表(包含子文件夹和文件) |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001005  | If the resource not found by path.       |

**示例:**
  ```ts
F
fangyunzhong 已提交
4236 4237
  import { BusinessError } from '@ohos.base';

4238 4239 4240
  try { // 传入""表示获取rawfile根目录下的文件列表
    this.context.resourceManager.getRawFileListSync("")
  } catch (error) {
F
fangyunzhong 已提交
4241 4242 4243
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getRawFileListSync failed, error code: ${code}, message: ${message}.`);
4244 4245 4246
  }
  ```

4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271
### getRawFileList<sup>10+</sup>

getRawFileList(path: string, callback: AsyncCallback&lt;Array\<string\>&gt;): void;

用户获取resources/rawfile目录下文件夹及文件列表,使用callback形式返回文件列表的字符串数组。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 

| 参数名      | 类型                              | 必填   | 说明                      |
| -------- | ------------------------------- | ---- | ----------------------- |
| path     | string                          | 是    | rawfile文件夹路径             |
| callback | AsyncCallback&lt;Array\<string\>&gt; | 是 | 异步回调,用于返回获取rawfile文件目录下的文件列表 |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001005  | If the resource not found by path.       |

**示例:** 
  ```ts
F
fangyunzhong 已提交
4272 4273
  import { BusinessError } from '@ohos.base';

4274 4275 4276 4277 4278 4279 4280 4281 4282
  try { // 传入""表示获取rawfile根目录下的文件列表
    this.context.resourceManager.getRawFileList("", (error, value) => {
      if (error != null) {
        console.error(`callback getRawFileList failed, error code: ${error.code}, message: ${error.message}.`);
      } else {
        let rawFile = value;
      }
    });
  } catch (error) {
F
fangyunzhong 已提交
4283 4284 4285
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getRawFileList failed, error code: ${code}, message: ${message}.`);
4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318
  }
  ```

### getRawFileList<sup>10+</sup>

getRawFileList(path: string): Promise&lt;Array\<string\>&gt;

用户获取resources/rawfile目录下文件夹及文件列表,使用Promise形式返回文件列表字符串数组。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 

| 参数名  | 类型     | 必填   | 说明          |
| ---- | ------ | ---- | ----------- |
| path | string | 是    | rawfile文件夹路径 |

**返回值:**

| 类型                        | 说明          |
| ------------------------- | ----------- |
| Promise&lt;Array\<string\>&gt; | rawfile文件目录下的文件列表 |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001005  | If the resource not found by path.          |

**示例:** 
  ```ts
F
fangyunzhong 已提交
4319 4320
  import { BusinessError } from '@ohos.base';

4321
  try { // 传入""表示获取rawfile根目录下的文件列表
F
fangyunzhong 已提交
4322
    this.context.resourceManager.getRawFileList("").then((value: Array<string>) => {
4323
      let rawFile = value;
F
fangyunzhong 已提交
4324
    }).catch((error: BusinessError) => {
4325 4326 4327
      console.error(`promise getRawFileList failed, error code: ${error.code}, message: ${error.message}.`);
    });
  } catch (error) {
F
fangyunzhong 已提交
4328 4329 4330
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getRawFileList failed, error code: ${code}, message: ${message}.`);
4331 4332 4333
  }
  ```

4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363
### getRawFdSync<sup>10+</sup>

getRawFdSync(path: string): RawFileDescriptor

用户获取resources/rawfile目录下对应rawfile文件的descriptor。

**系统能力:** SystemCapability.Global.ResourceManager

**参数:**

| 参数名      | 类型                                       | 必填   | 说明                               |
| -------- | ---------------------------------------- | ---- | -------------------------------- |
| path     | string                                   | 是    | rawfile文件路径                      |

**返回值:**

| 类型                        | 说明          |
| ------------------------- | ----------- |
| [RawFileDescriptor](#rawfiledescriptor8) | rawfile文件的descriptor |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001005  | If the resource not found by path.          |

**示例:**
  ```ts
F
fangyunzhong 已提交
4364 4365
  import { BusinessError } from '@ohos.base';

4366 4367 4368
  try {
    this.context.resourceManager.getRawFdSync("test.txt");
  } catch (error) {
F
fangyunzhong 已提交
4369 4370 4371
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`getRawFdSync failed, error code: ${code}, message: ${message}.`);
4372 4373 4374
  }
  ```

4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399
### getRawFd<sup>9+</sup>

getRawFd(path: string, callback: AsyncCallback&lt;RawFileDescriptor&gt;): void

用户获取resources/rawfile目录下对应rawfile文件的descriptor,使用callback形式返回。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 

| 参数名      | 类型                                       | 必填   | 说明                               |
| -------- | ---------------------------------------- | ---- | -------------------------------- |
| path     | string                                   | 是    | rawfile文件路径                      |
| callback | AsyncCallback&lt;[RawFileDescriptor](#rawfiledescriptor8)&gt; | 是    | 异步回调,用于返回获取的rawfile文件的descriptor |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001005  | If the resource not found by path.          |

**示例:** 
  ```ts
F
fangyunzhong 已提交
4400 4401
  import { BusinessError } from '@ohos.base';

4402
  try {
F
fangyunzhong 已提交
4403
    this.context.resourceManager.getRawFd("test.txt", (error, value) => {
4404 4405 4406 4407 4408 4409 4410
      if (error != null) {
        console.log(`callback getRawFd failed error code: ${error.code}, message: ${error.message}.`);
      } else {
        let fd = value.fd;
        let offset = value.offset;
        let length = value.length;
      }
H
huangjie 已提交
4411 4412
    });
  } catch (error) {
F
fangyunzhong 已提交
4413 4414 4415
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback getRawFd failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
4416 4417 4418
  }
  ```

4419
### getRawFd<sup>9+</sup>
H
huangjie 已提交
4420

4421
getRawFd(path: string): Promise&lt;RawFileDescriptor&gt;
H
huangjie 已提交
4422

4423
用户获取resources/rawfile目录下对应rawfile文件的descriptor,使用Promise形式返回。
H
huangjie 已提交
4424 4425 4426

**系统能力**:SystemCapability.Global.ResourceManager

4427
**参数:** 
H
huangjie 已提交
4428

4429 4430 4431
| 参数名  | 类型     | 必填   | 说明          |
| ---- | ------ | ---- | ----------- |
| path | string | 是    | rawfile文件路径 |
H
huangjie 已提交
4432 4433 4434

**返回值:**

4435 4436 4437
| 类型                                       | 说明                  |
| ---------------------------------------- | ------------------- |
| Promise&lt;[RawFileDescriptor](#rawfiledescriptor8)&gt; | rawfile文件descriptor |
H
huangjie 已提交
4438 4439 4440 4441 4442 4443 4444

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
4445
| 9001005  | If the resource not found by path.          |
H
huangjie 已提交
4446

4447
**示例:** 
H
huangjie 已提交
4448
  ```ts
F
fangyunzhong 已提交
4449 4450
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
4451
  try {
F
fangyunzhong 已提交
4452
    this.context.resourceManager.getRawFd("test.txt").then((value: resourceManager.RawFileDescriptor) => {
4453 4454 4455
      let fd = value.fd;
      let offset = value.offset;
      let length = value.length;
F
fangyunzhong 已提交
4456
    }).catch((error: BusinessError) => {
4457
      console.log(`promise getRawFd error error code: ${error.code}, message: ${error.message}.`);
H
huangjie 已提交
4458 4459
    });
  } catch (error) {
F
fangyunzhong 已提交
4460 4461 4462
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise getRawFd failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
4463 4464 4465
  }
  ```

4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489
### closeRawFdSync<sup>10+</sup>

closeRawFdSync(path: string): void

用户关闭resources/rawfile目录下rawfile文件的descriptor。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:**

| 参数名      | 类型                        | 必填   | 说明          |
| -------- | ------------------------- | ---- | ----------- |
| path     | string                    | 是    | rawfile文件路径 |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001005  | The resource not found by path.          |

**示例:**
  ```ts
F
fangyunzhong 已提交
4490 4491
  import { BusinessError } from '@ohos.base';

4492 4493 4494
  try {
    this.context.resourceManager.closeRawFdSync("test.txt");
  } catch (error) {
F
fangyunzhong 已提交
4495 4496 4497
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`closeRawFd failed, error code: ${code}, message: ${message}.`);
4498 4499 4500
  }
  ```

4501
### closeRawFd<sup>9+</sup>
H
huangjie 已提交
4502

4503
closeRawFd(path: string, callback: AsyncCallback&lt;void&gt;): void
H
huangjie 已提交
4504

4505
用户关闭resources/rawfile目录下rawfile文件的descriptor,使用callback形式返回。
H
huangjie 已提交
4506 4507 4508

**系统能力**:SystemCapability.Global.ResourceManager

4509
**参数:** 
H
huangjie 已提交
4510

4511 4512 4513 4514
| 参数名      | 类型                        | 必填   | 说明          |
| -------- | ------------------------- | ---- | ----------- |
| path     | string                    | 是    | rawfile文件路径 |
| callback | AsyncCallback&lt;void&gt; | 是    | 异步回调        |
H
huangjie 已提交
4515 4516 4517 4518 4519 4520 4521

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
4522
| 9001005  | The resource not found by path.          |
H
huangjie 已提交
4523

4524
**示例:** 
H
huangjie 已提交
4525
  ```ts
F
fangyunzhong 已提交
4526 4527
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
4528
  try {
F
fangyunzhong 已提交
4529
    this.context.resourceManager.closeRawFd("test.txt", (error, value) => {
4530 4531 4532
      if (error != null) {
        console.log("error is " + error);
      }
H
huangjie 已提交
4533 4534
    });
  } catch (error) {
F
fangyunzhong 已提交
4535 4536 4537
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`callback closeRawFd failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
4538 4539 4540
  }
  ```

4541
### closeRawFd<sup>9+</sup>
H
huangjie 已提交
4542

4543
closeRawFd(path: string): Promise&lt;void&gt;
H
huangjie 已提交
4544

4545
用户关闭resources/rawfile目录下rawfile文件的descriptor,使用Promise形式返回。
H
huangjie 已提交
4546 4547 4548

**系统能力**:SystemCapability.Global.ResourceManager

4549
**参数:** 
H
huangjie 已提交
4550

4551 4552 4553
| 参数名  | 类型     | 必填   | 说明          |
| ---- | ------ | ---- | ----------- |
| path | string | 是    | rawfile文件路径 |
H
huangjie 已提交
4554 4555 4556

**返回值:**

4557 4558 4559
| 类型                  | 说明   |
| ------------------- | ---- |
| Promise&lt;void&gt; | 无返回值 |
H
huangjie 已提交
4560 4561 4562 4563 4564 4565 4566

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
4567
| 9001005  | If the resource not found by path.          |
H
huangjie 已提交
4568

4569
**示例:** 
H
huangjie 已提交
4570
  ```ts
F
fangyunzhong 已提交
4571 4572
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
4573
  try {
F
fangyunzhong 已提交
4574
    this.context.resourceManager.closeRawFd("test.txt");
H
huangjie 已提交
4575
  } catch (error) {
F
fangyunzhong 已提交
4576 4577 4578
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`promise closeRawFd failed, error code: ${code}, message: ${message}.`);
H
huangjie 已提交
4579 4580 4581
  }
  ```

F
fangyunzhong 已提交
4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606
### getConfigurationSync

getConfigurationSync(): Configuration

用户获取设备的Configuration,使用同步形式返回Configuration对象。

**系统能力**:SystemCapability.Global.ResourceManager

**返回值:**

| 类型                                       | 说明               |
| ---------------------------------------- | ---------------- |
| Promise&lt;[Configuration](#configuration)&gt; | 设备的Configuration |

**示例:** 
  ```ts
  try {
    let value = this.context.resourceManager.getConfigurationSync();
    let direction = value.direction;
    let locale = value.locale;
  } catch (error) {
    console.error("getConfigurationSync error is " + error);
  }
  ```

4607
### getConfiguration
H
huangjie 已提交
4608

4609
getConfiguration(callback: AsyncCallback&lt;Configuration&gt;): void
H
huangjie 已提交
4610

4611
用户获取设备的Configuration,使用callback形式返回Configuration对象。
H
huangjie 已提交
4612 4613 4614

**系统能力**:SystemCapability.Global.ResourceManager

4615
**参数:** 
H
huangjie 已提交
4616

4617 4618 4619
| 参数名      | 类型                                       | 必填   | 说明                        |
| -------- | ---------------------------------------- | ---- | ------------------------- |
| callback | AsyncCallback&lt;[Configuration](#configuration)&gt; | 是    | 异步回调,用于返回设备的Configuration |
H
huangjie 已提交
4620

4621
**示例:** 
H
huangjie 已提交
4622 4623
  ```ts
  try {
4624 4625 4626 4627 4628 4629 4630 4631
    this.context.resourceManager.getConfiguration((error, value) => {
      if (error != null) {
        console.error("getConfiguration callback error is " + error);
      } else {
        let direction = value.direction;
        let locale = value.locale;
      }
    });
H
huangjie 已提交
4632
  } catch (error) {
4633
    console.error("getConfiguration callback error is " + error);
H
huangjie 已提交
4634 4635 4636
  }
  ```

4637
### getConfiguration
H
huangjie 已提交
4638

4639
getConfiguration(): Promise&lt;Configuration&gt;
H
huangjie 已提交
4640

4641
用户获取设备的Configuration,使用Promise形式返回Configuration对象。
H
huangjie 已提交
4642 4643 4644

**系统能力**:SystemCapability.Global.ResourceManager

4645
**返回值:**
Z
zt147369 已提交
4646

4647 4648 4649
| 类型                                       | 说明               |
| ---------------------------------------- | ---------------- |
| Promise&lt;[Configuration](#configuration)&gt; | 设备的Configuration |
H
huangjie 已提交
4650

4651 4652
**示例:** 
  ```ts
F
fangyunzhong 已提交
4653 4654
  import { BusinessError } from '@ohos.base';

4655
  try {
F
fangyunzhong 已提交
4656
    this.context.resourceManager.getConfiguration().then((value: resourceManager.Configuration) => {
4657 4658
      let direction = value.direction;
      let locale = value.locale;
F
fangyunzhong 已提交
4659
    }).catch((error: BusinessError) => {
4660 4661 4662 4663 4664 4665
      console.error("getConfiguration promise error is " + error);
    });
  } catch (error) {
    console.error("getConfiguration promise error is " + error);
  }
  ```
H
huangjie 已提交
4666

F
fangyunzhong 已提交
4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691
### getDeviceCapabilitySync

getDeviceCapabilitySync(): DeviceCapability

用户获取设备的DeviceCapability,使用同步形式返回DeviceCapability对象。

**系统能力**:SystemCapability.Global.ResourceManager

**返回值:**

| 类型                                       | 说明                  |
| ---------------------------------------- | ------------------- |
| DeviceCapability | 设备的DeviceCapability |

**示例:** 
  ```ts
  try {
    let value = this.context.resourceManager.getDeviceCapabilitySync();
    let screenDensity = value.screenDensity;
    let deviceType = value.deviceType;
  } catch (error) {
    console.error("getDeviceCapabilitySync error is " + error);
  }
  ```

4692
### getDeviceCapability
H
huangjie 已提交
4693

4694
getDeviceCapability(callback: AsyncCallback&lt;DeviceCapability&gt;): void
H
huangjie 已提交
4695

4696
用户获取设备的DeviceCapability,使用callback形式返回DeviceCapability对象。
H
huangjie 已提交
4697

4698
**系统能力**:SystemCapability.Global.ResourceManager
H
huangjie 已提交
4699

4700
**参数:** 
H
huangjie 已提交
4701

4702 4703 4704 4705 4706
| 参数名      | 类型                                       | 必填   | 说明                           |
| -------- | ---------------------------------------- | ---- | ---------------------------- |
| callback | AsyncCallback&lt;[DeviceCapability](#devicecapability)&gt; | 是    | 异步回调,用于返回设备的DeviceCapability |

**示例:** 
H
huangjie 已提交
4707 4708
  ```ts
  try {
4709 4710 4711 4712 4713 4714 4715 4716
    this.context.resourceManager.getDeviceCapability((error, value) => {
      if (error != null) {
        console.error("getDeviceCapability callback error is " + error);
      } else {
        let screenDensity = value.screenDensity;
        let deviceType = value.deviceType;
      }
    });
H
huangjie 已提交
4717
  } catch (error) {
4718
    console.error("getDeviceCapability callback error is " + error);
H
huangjie 已提交
4719 4720 4721
  }
  ```

4722
### getDeviceCapability
H
huangjie 已提交
4723

4724
getDeviceCapability(): Promise&lt;DeviceCapability&gt;
H
huangjie 已提交
4725

4726
用户获取设备的DeviceCapability,使用Promise形式返回DeviceCapability对象。
H
huangjie 已提交
4727 4728 4729

**系统能力**:SystemCapability.Global.ResourceManager

4730
**返回值:**
H
huangjie 已提交
4731

4732 4733 4734
| 类型                                       | 说明                  |
| ---------------------------------------- | ------------------- |
| Promise&lt;[DeviceCapability](#devicecapability)&gt; | 设备的DeviceCapability |
H
huangjie 已提交
4735

4736 4737
**示例:** 
  ```ts
F
fangyunzhong 已提交
4738 4739
  import { BusinessError } from '@ohos.base';

4740
  try {
F
fangyunzhong 已提交
4741
    this.context.resourceManager.getDeviceCapability().then((value: resourceManager.DeviceCapability) => {
4742 4743
      let screenDensity = value.screenDensity;
      let deviceType = value.deviceType;
F
fangyunzhong 已提交
4744
    }).catch((error: BusinessError) => {
4745 4746 4747 4748 4749 4750
      console.error("getDeviceCapability promise error is " + error);
    });
  } catch (error) {
    console.error("getDeviceCapability promise error is " + error);
  }
  ```
H
huangjie 已提交
4751

4752
### release<sup>7+</sup>
H
huangjie 已提交
4753

4754
release()
H
huangjie 已提交
4755

H
huangjie 已提交
4756
用户释放创建的resourceManager, 此接口暂不支持。
H
huangjie 已提交
4757

4758
**系统能力**:SystemCapability.Global.ResourceManager
H
huangjie 已提交
4759

4760
**示例:** 
H
huangjie 已提交
4761 4762
  ```ts
  try {
4763
    this.context.resourceManager.release();
H
huangjie 已提交
4764
  } catch (error) {
4765
    console.error("release error is " + error);
H
huangjie 已提交
4766 4767 4768
  }
  ```

4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792
### addResource<sup>10+</sup>

addResource(path: string) : void;

应用运行时,加载指定的资源路径,实现资源覆盖。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:**

| 参数名      | 类型                     | 必填   | 说明   |
| -------- | ---------------------- | ---- | ---- |
| path | string | 是    | 资源路径 |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001010  | If the overlay path is invalid.            |

**示例:**
  ```ts
F
fangyunzhong 已提交
4793 4794
  import { BusinessError } from '@ohos.base';

4795 4796
  let path = getContext().bundleCodeDir + "/library1-default-signed.hsp";
  try {
4797
    this.context.resourceManager.addResource(path);
4798
  } catch (error) {
F
fangyunzhong 已提交
4799 4800 4801
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`addResource failed, error code: ${code}, message: ${message}.`);
Z
zt147369 已提交
4802
  }
4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828
  ```

### removeResource<sup>10+</sup>

removeResource(path: string) : void;

用户运行时,移除指定的资源路径,还原被覆盖前的资源。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:**

| 参数名      | 类型            | 必填   | 说明   |
| -------- | ---------------------- | ---- | ---- |
| path | string | 是    | 资源路径 |

**错误码:**

以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001010  | If the overlay path is invalid.            |

**示例:**
  ```ts
F
fangyunzhong 已提交
4829 4830
  import { BusinessError } from '@ohos.base';

4831 4832
  let path = getContext().bundleCodeDir + "/library1-default-signed.hsp";
  try {
F
fangyunzhong 已提交
4833
    this.context.resourceManager.removeResource(path);
4834
  } catch (error) {
F
fangyunzhong 已提交
4835 4836 4837
    let code = (error as BusinessError).code;
    let message = (error as BusinessError).message;
    console.error(`removeResource failed, error code: ${code}, message: ${message}.`);
4838 4839 4840
  }
  ```

H
huangjie 已提交
4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851
### getString<sup>(deprecated)</sup>

getString(resId: number, callback: AsyncCallback&lt;string&gt;): void

用户获取指定资源ID对应的字符串,使用callback形式返回字符串。

从API version 9开始不再维护,建议使用[getStringValue](#getstringvalue9)代替。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
4852

H
huangjie 已提交
4853 4854 4855 4856 4857
| 参数名      | 类型                          | 必填   | 说明              |
| -------- | --------------------------- | ---- | --------------- |
| resId    | number                      | 是    | 资源ID值           |
| callback | AsyncCallback&lt;string&gt; | 是    | 异步回调,用于返回获取的字符串 |

4858
**示例:**
H
huangjie 已提交
4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882
  ```ts
  resourceManager.getResourceManager((error, mgr) => {
      mgr.getString($r('app.string.test').id, (error, value) => {
          if (error != null) {
              console.log("error is " + error);
          } else {
              let str = value;
          }
      });
  });
  ```


### getString<sup>(deprecated)</sup>

getString(resId: number): Promise&lt;string&gt;

用户获取指定资源ID对应的字符串,使用Promise形式返回字符串。

从API version 9开始不再维护,建议使用[getStringValue](#getstringvalue9-1)代替。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
4883

H
huangjie 已提交
4884 4885 4886 4887
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |

H
huangjie 已提交
4888 4889
**返回值:**

H
huangjie 已提交
4890 4891 4892 4893 4894 4895
| 类型                    | 说明          |
| --------------------- | ----------- |
| Promise&lt;string&gt; | 资源ID值对应的字符串 |

**示例:** 
  ```ts
F
fangyunzhong 已提交
4896 4897
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
4898
  resourceManager.getResourceManager((error, mgr) => {
F
fangyunzhong 已提交
4899
      mgr.getString($r('app.string.test').id).then((value: string) => {
H
huangjie 已提交
4900
          let str = value;
F
fangyunzhong 已提交
4901
      }).catch((error: BusinessError) => {
H
huangjie 已提交
4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918
          console.log("getstring promise error is " + error);
      });
  });
  ```


### getStringArray<sup>(deprecated)</sup>

getStringArray(resId: number, callback: AsyncCallback&lt;Array&lt;string&gt;&gt;): void

用户获取指定资源ID对应的字符串数组,使用callback形式返回字符串数组。

从API version 9开始不再维护,建议使用[getStringArrayValue](#getstringarrayvalue9)代替。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
4919

H
huangjie 已提交
4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949
| 参数名      | 类型                                       | 必填   | 说明                |
| -------- | ---------------------------------------- | ---- | ----------------- |
| resId    | number                                   | 是    | 资源ID值             |
| callback | AsyncCallback&lt;Array&lt;string&gt;&gt; | 是    | 异步回调,用于返回获取的字符串数组 |

**示例:** 
  ```ts
  resourceManager.getResourceManager((error, mgr) => {
      mgr.getStringArray($r('app.strarray.test').id, (error, value) => {
          if (error != null) {
              console.log("error is " + error);
          } else {
              let strArray = value;
          }
      });
  });
  ```


### getStringArray<sup>(deprecated)</sup>

getStringArray(resId: number): Promise&lt;Array&lt;string&gt;&gt;

用户获取指定资源ID对应的字符串数组,使用Promise形式返回字符串数组。

从API version 9开始不再维护,建议使用[getStringArrayValue](#getstringarrayvalue9-1)代替。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
4950

H
huangjie 已提交
4951 4952 4953 4954
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |

H
huangjie 已提交
4955 4956
**返回值:**

H
huangjie 已提交
4957 4958 4959 4960
| 类型                                 | 说明            |
| ---------------------------------- | ------------- |
| Promise&lt;Array&lt;string&gt;&gt; | 资源ID值对应的字符串数组 |

H
huangjie 已提交
4961
**示例:** 
H
HelloCrease 已提交
4962
  ```ts
F
fangyunzhong 已提交
4963 4964
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
4965
  resourceManager.getResourceManager((error, mgr) => {
F
fangyunzhong 已提交
4966
       mgr.getStringArray($r('app.strarray.test').id).then((value: Array<string>) => {
H
huangjie 已提交
4967
          let strArray = value;
F
fangyunzhong 已提交
4968
      }).catch((error: BusinessError) => {
H
huangjie 已提交
4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980
          console.log("getStringArray promise error is " + error);
      });
  });
  ```


### getMedia<sup>(deprecated)</sup>

getMedia(resId: number, callback: AsyncCallback&lt;Uint8Array&gt;): void

用户获取指定资源ID对应的媒体文件内容,使用callback形式返回字节数组。

H
huangjie 已提交
4981
从API version 9开始不再维护,建议使用[getMediaContent](#getmediacontent9)代替。
H
huangjie 已提交
4982 4983 4984 4985

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
4986

H
huangjie 已提交
4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011
| 参数名      | 类型                              | 必填   | 说明                 |
| -------- | ------------------------------- | ---- | ------------------ |
| resId    | number                          | 是    | 资源ID值              |
| callback | AsyncCallback&lt;Uint8Array&gt; | 是    | 异步回调,用于返回获取的媒体文件内容 |

**示例:** 
  ```ts
  resourceManager.getResourceManager((error, mgr) => {
      mgr.getMedia($r('app.media.test').id, (error, value) => {
          if (error != null) {
              console.log("error is " + error);
          } else {
              let media = value;
          }
      });
  });
  ```


### getMedia<sup>(deprecated)</sup>

getMedia(resId: number): Promise&lt;Uint8Array&gt;

用户获取指定资源ID对应的媒体文件内容,使用Promise形式返回字节数组。

H
huangjie 已提交
5012
从API version 9开始不再维护,建议使用[getMediaContent](#getmediacontent9-1)代替。
H
huangjie 已提交
5013 5014 5015 5016

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
5017

H
huangjie 已提交
5018 5019 5020 5021
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |

H
huangjie 已提交
5022 5023
**返回值:**

H
huangjie 已提交
5024 5025 5026 5027 5028 5029
| 类型                        | 说明             |
| ------------------------- | -------------- |
| Promise&lt;Uint8Array&gt; | 资源ID值对应的媒体文件内容 |

**示例:** 
  ```ts
F
fangyunzhong 已提交
5030 5031
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
5032
  resourceManager.getResourceManager((error, mgr) => {
F
fangyunzhong 已提交
5033
      mgr.getMedia($r('app.media.test').id).then((value: Uint8Array) => {
H
huangjie 已提交
5034
          let media = value;
F
fangyunzhong 已提交
5035
      }).catch((error: BusinessError) => {
H
huangjie 已提交
5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047
          console.log("getMedia promise error is " + error);
      });
  });
  ```


### getMediaBase64<sup>(deprecated)</sup>

getMediaBase64(resId: number, callback: AsyncCallback&lt;string&gt;): void

用户获取指定资源ID对应的图片资源Base64编码,使用callback形式返回字符串。

H
huangjie 已提交
5048
从API version 9开始不再维护,建议使用[getMediaContentBase64](#getmediacontentbase649)代替。
H
huangjie 已提交
5049 5050 5051 5052

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
5053

H
huangjie 已提交
5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078
| 参数名      | 类型                          | 必填   | 说明                       |
| -------- | --------------------------- | ---- | ------------------------ |
| resId    | number                      | 是    | 资源ID值                    |
| callback | AsyncCallback&lt;string&gt; | 是    | 异步回调,用于返回获取的图片资源Base64编码 |

**示例:** 
  ```ts
  resourceManager.getResourceManager((error, mgr) => {
      mgr.getMediaBase64($r('app.media.test').id, (error, value) => {
          if (error != null) {
              console.log("error is " + error);
          } else {
              let media = value;
          }
      });
  });
  ```


### getMediaBase64<sup>(deprecated)</sup>

getMediaBase64(resId: number): Promise&lt;string&gt;

用户获取指定资源ID对应的图片资源Base64编码,使用Promise形式返回字符串。

H
huangjie 已提交
5079
从API version 9开始不再维护,建议使用[getMediaContentBase64](#getmediacontentbase649-1)代替。
H
huangjie 已提交
5080 5081 5082 5083

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
5084

H
huangjie 已提交
5085 5086 5087 5088
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |

H
huangjie 已提交
5089 5090
**返回值:**

H
huangjie 已提交
5091 5092 5093 5094 5095 5096
| 类型                    | 说明                   |
| --------------------- | -------------------- |
| Promise&lt;string&gt; | 资源ID值对应的图片资源Base64编码 |

**示例:** 
  ```ts
F
fangyunzhong 已提交
5097 5098
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
5099
  resourceManager.getResourceManager((error, mgr) => {
F
fangyunzhong 已提交
5100
      mgr.getMediaBase64($r('app.media.test').id).then((value: string) => {
H
huangjie 已提交
5101
          let media = value;
F
fangyunzhong 已提交
5102
      }).catch((error: BusinessError) => {
H
huangjie 已提交
5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114
          console.log("getMediaBase64 promise error is " + error);
      });
  });
  ```


### getPluralString<sup>(deprecated)</sup>

getPluralString(resId: number, num: number): Promise&lt;string&gt;

根据指定数量获取对指定ID字符串表示的单复数字符串,使用Promise形式返回字符串。

H
huangjie 已提交
5115
从API version 9开始不再维护,建议使用[getPluralStringValue](#getpluralstringvalue9)代替。
H
huangjie 已提交
5116 5117 5118 5119

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
5120

H
huangjie 已提交
5121 5122 5123 5124 5125
| 参数名   | 类型     | 必填   | 说明    |
| ----- | ------ | ---- | ----- |
| resId | number | 是    | 资源ID值 |
| num   | number | 是    | 数量值   |

H
huangjie 已提交
5126 5127
**返回值:**

H
huangjie 已提交
5128 5129 5130 5131 5132 5133
| 类型                    | 说明                        |
| --------------------- | ------------------------- |
| Promise&lt;string&gt; | 根据提供的数量获取对应ID字符串表示的单复数字符串 |

**示例:** 
  ```ts
F
fangyunzhong 已提交
5134 5135
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
5136
  resourceManager.getResourceManager((error, mgr) => {
F
fangyunzhong 已提交
5137
      mgr.getPluralString($r("app.plural.test").id, 1).then((value: string) => {
H
huangjie 已提交
5138
          let str = value;
F
fangyunzhong 已提交
5139
      }).catch((error: BusinessError) => {
H
huangjie 已提交
5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151
          console.log("getPluralString promise error is " + error);
      });
  });
  ```


### getPluralString<sup>(deprecated)</sup>

getPluralString(resId: number, num: number, callback: AsyncCallback&lt;string&gt;): void

根据指定数量获取指定ID字符串表示的单复数字符串,使用callback形式返回字符串。

H
huangjie 已提交
5152
从API version 9开始不再维护,建议使用[getPluralStringValue](#getpluralstringvalue9-1)代替。
H
huangjie 已提交
5153 5154 5155 5156

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
5157

H
huangjie 已提交
5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188
| 参数名      | 类型                          | 必填   | 说明                              |
| -------- | --------------------------- | ---- | ------------------------------- |
| resId    | number                      | 是    | 资源ID值                           |
| num      | number                      | 是    | 数量值                             |
| callback | AsyncCallback&lt;string&gt; | 是    | 异步回调,返回根据指定数量获取指定ID字符串表示的单复数字符串 |

**示例:** 
  ```ts
  resourceManager.getResourceManager((error, mgr) => {
      mgr.getPluralString($r("app.plural.test").id, 1, (error, value) => {
          if (error != null) {
              console.log("error is " + error);
          } else {
              let str = value;
          }
      });
  });
  ```


### getRawFile<sup>(deprecated)</sup>

getRawFile(path: string, callback: AsyncCallback&lt;Uint8Array&gt;): void

用户获取resources/rawfile目录下对应的rawfile文件内容,使用callback形式返回字节数组。

从API version 9开始不再维护,建议使用[getRawFileContent](#getrawfilecontent9)代替。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
5189

H
huangjie 已提交
5190 5191 5192 5193 5194 5195 5196 5197
| 参数名      | 类型                              | 必填   | 说明                      |
| -------- | ------------------------------- | ---- | ----------------------- |
| path     | string                          | 是    | rawfile文件路径             |
| callback | AsyncCallback&lt;Uint8Array&gt; | 是    | 异步回调,用于返回获取的rawfile文件内容 |

**示例:** 
  ```ts
  resourceManager.getResourceManager((error, mgr) => {
F
fangyunzhong 已提交
5198
      mgr.getRawFile("test.txt", (error, value) => {
H
huangjie 已提交
5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219
          if (error != null) {
              console.log("error is " + error);
          } else {
              let rawFile = value;
          }
      });
  });
  ```


### getRawFile<sup>(deprecated)</sup>

getRawFile(path: string): Promise&lt;Uint8Array&gt;

用户获取resources/rawfile目录下对应的rawfile文件内容,使用Promise形式返回字节数组。

从API version 9开始不再维护,建议使用[getRawFileContent](#getrawfilecontent9-1)代替。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
5220

H
huangjie 已提交
5221 5222 5223 5224
| 参数名  | 类型     | 必填   | 说明          |
| ---- | ------ | ---- | ----------- |
| path | string | 是    | rawfile文件路径 |

H
huangjie 已提交
5225 5226
**返回值:**

H
huangjie 已提交
5227 5228 5229 5230 5231 5232
| 类型                        | 说明          |
| ------------------------- | ----------- |
| Promise&lt;Uint8Array&gt; | rawfile文件内容 |

**示例:** 
  ```ts
F
fangyunzhong 已提交
5233 5234
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
5235
  resourceManager.getResourceManager((error, mgr) => {
F
fangyunzhong 已提交
5236
      mgr.getRawFile("test.txt").then((value: Uint8Array) => {
H
huangjie 已提交
5237
          let rawFile = value;
F
fangyunzhong 已提交
5238
      }).catch((error: BusinessError) => {
H
huangjie 已提交
5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255
          console.log("getRawFile promise error is " + error);
      });
  });
  ```


### getRawFileDescriptor<sup>(deprecated)</sup>

getRawFileDescriptor(path: string, callback: AsyncCallback&lt;RawFileDescriptor&gt;): void

用户获取resources/rawfile目录下对应rawfile文件的descriptor,使用callback形式返回。

从API version 9开始不再维护,建议使用[getRawFd](#getrawfd9)代替。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
5256

H
huangjie 已提交
5257 5258 5259 5260 5261 5262 5263 5264
| 参数名      | 类型                                       | 必填   | 说明                               |
| -------- | ---------------------------------------- | ---- | -------------------------------- |
| path     | string                                   | 是    | rawfile文件路径                      |
| callback | AsyncCallback&lt;[RawFileDescriptor](#rawfiledescriptor8)&gt; | 是    | 异步回调,用于返回获取的rawfile文件的descriptor |

**示例:** 
  ```ts
  resourceManager.getResourceManager((error, mgr) => {
F
fangyunzhong 已提交
5265
      mgr.getRawFileDescriptor("test.txt", (error, value) => {
H
huangjie 已提交
5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287
          if (error != null) {
              console.log("error is " + error);
          } else {
              let fd = value.fd;
              let offset = value.offset;
              let length = value.length;
          }
      });
  });
  ```

### getRawFileDescriptor<sup>(deprecated)</sup>

getRawFileDescriptor(path: string): Promise&lt;RawFileDescriptor&gt;

用户获取resources/rawfile目录下对应rawfile文件的descriptor,使用Promise形式返回。

从API version 9开始不再维护,建议使用[getRawFd](#getrawfd9-1)代替。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 
H
huangjie 已提交
5288

H
huangjie 已提交
5289 5290 5291 5292
| 参数名  | 类型     | 必填   | 说明          |
| ---- | ------ | ---- | ----------- |
| path | string | 是    | rawfile文件路径 |

H
huangjie 已提交
5293 5294
**返回值:**

H
huangjie 已提交
5295 5296 5297 5298 5299 5300
| 类型                                       | 说明                  |
| ---------------------------------------- | ------------------- |
| Promise&lt;[RawFileDescriptor](#rawfiledescriptor8)&gt; | rawfile文件descriptor |

**示例:** 
  ```ts
F
fangyunzhong 已提交
5301 5302
  import { BusinessError } from '@ohos.base';

H
huangjie 已提交
5303
  resourceManager.getResourceManager((error, mgr) => {
F
fangyunzhong 已提交
5304
      mgr.getRawFileDescriptor("test.txt").then((value: resourceManager.RawFileDescriptor) => {
H
huangjie 已提交
5305 5306 5307
          let fd = value.fd;
          let offset = value.offset;
          let length = value.length;
F
fangyunzhong 已提交
5308
      }).catch((error: BusinessError) => {
H
huangjie 已提交
5309 5310 5311
          console.log("getRawFileDescriptor promise error is " + error);
      });
  });
Z
zt147369 已提交
5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333
  ```

### closeRawFileDescriptor<sup>(deprecated)</sup>

closeRawFileDescriptor(path: string, callback: AsyncCallback&lt;void&gt;): void

用户关闭resources/rawfile目录下rawfile文件的descriptor,使用callback形式返回。

从API version 9开始不再维护,建议使用[closeRawFd](#closerawfd9)代替。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 

| 参数名      | 类型                        | 必填   | 说明          |
| -------- | ------------------------- | ---- | ----------- |
| path     | string                    | 是    | rawfile文件路径 |
| callback | AsyncCallback&lt;void&gt; | 是    | 异步回调        |

**示例:** 
  ```ts
  resourceManager.getResourceManager((error, mgr) => {
F
fangyunzhong 已提交
5334
      mgr.closeRawFileDescriptor("test.txt", (error, value) => {
Z
zt147369 已提交
5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366
          if (error != null) {
              console.log("error is " + error);
          }
      });
  });
  ```

### closeRawFileDescriptor<sup>(deprecated)</sup>

closeRawFileDescriptor(path: string): Promise&lt;void&gt;

用户关闭resources/rawfile目录下rawfile文件的descriptor,使用Promise形式返回。

从API version 9开始不再维护,建议使用[closeRawFd](#closerawfd9-1)代替。

**系统能力**:SystemCapability.Global.ResourceManager

**参数:** 

| 参数名  | 类型     | 必填   | 说明          |
| ---- | ------ | ---- | ----------- |
| path | string | 是    | rawfile文件路径 |

**返回值:**

| 类型                  | 说明   |
| ------------------- | ---- |
| Promise&lt;void&gt; | 无返回值 |

**示例:** 
  ```ts
  resourceManager.getResourceManager((error, mgr) => {
F
fangyunzhong 已提交
5367
      mgr.closeRawFileDescriptor("test.txt");
Z
zt147369 已提交
5368
  });
H
huangjie 已提交
5369
  ```