Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
b3a0c40c
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
b3a0c40c
编写于
3月 16, 2022
作者:
O
openharmony_ci
提交者:
Gitee
3月 16, 2022
浏览文件
操作
浏览文件
下载
差异文件
!2084 增加对应getRawFileDescriptor和closeRawFileDescriptor文档
Merge pull request !2084 from wpgavin/master
上级
44267a5f
54063578
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
145 addition
and
0 deletion
+145
-0
zh-cn/application-dev/reference/apis/js-apis-resource-manager.md
...pplication-dev/reference/apis/js-apis-resource-manager.md
+145
-0
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-resource-manager.md
浏览文件 @
b3a0c40c
...
...
@@ -179,6 +179,18 @@ getResourceManager(bundleName: string): Promise<ResourceManager>
| deviceType |
[
DeviceType
](
#devicetype
)
| 是 | 否 | 当前设备类型
<br/>
**系统能力**
:SystemCapability.Global.ResourceManager |
## RawFileDescriptor<sup>8+</sup>
表示rawfile的descriptor信息。
<br/><b>
系统能力:
</b>
以下各项对应的系统能力均为SystemCapability.Global.ResourceManager
| 名称 | 类型 | 说明 |
| -------- | -------- | -------- |
| fd | number | rawfile的descriptor |
| offset | number | rawfile的起始偏移量 |
| length | number | rawfile的文件长度 |
## ResourceManager
提供访问应用资源的能力。
...
...
@@ -639,3 +651,136 @@ getRawFile(path: string): Promise<Uint8Array>
});
});
```
### getRawFileDescriptor<sup>8+</sup>
getRawFileDescriptor(path: string, callback: AsyncCallback
<
RawFileDescriptor
>
): void
用户获取指定路径对应的rawfile文件的descriptor,使用callback形式返回。
**系统能力**
:SystemCapability.Global.ResourceManager
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| path | string | 是 | rawfile文件路径 |
| callback | AsyncCallback
<
[RawFileDescriptor](#RawFileDescriptor
<sup>
8+
</sup>
)
>
| 是 | 异步回调,用于返回获取的rawfile文件的descriptor |
-
示例:
```
resourceManager.getResourceManager((error, mgr) => {
mgr.getRawFileDescriptor("test.xml", (error, value) => {
if (error != null) {
console.log(value);
} else {
let fd = value.fd;
let offset = value.offset;
let length = value.length;
}
});
});
```
### getRawFileDescriptor<sup>8+</sup>
getRawFileDescriptor(path: string): Promise
<
RawFileDescriptor
>
用户获取指定路径对应的rawfile文件的descriptor,使用Promise形式返回。
**系统能力**
:SystemCapability.Global.ResourceManager
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| path | string | 是 | rawfile文件路径 |
-
返回值:
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
[RawFileDescriptor](#RawFileDescriptor
<sup>
8+
</sup>
)
>
| rawfile文件descriptor |
-
示例:
```
resourceManager.getResourceManager((error, mgr) => {
mgr.getRawFileDescriptor("test.xml").then(value => {
let fd = value.fd;
let offset = value.offset;
let length = value.length;
}).catch(error => {
console.log("getRawFileDescriptor promise " + error);
});
});
```
### closeRawFileDescriptor<sup>8+</sup>
closeRawFileDescriptor(path: string, callback: AsyncCallback
<
void
>
): void
用户关闭指定路径打开的rawfile文件的descriptor,使用callback形式返回。
**系统能力**
:SystemCapability.Global.ResourceManager
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| path | string | 是 | rawfile文件路径 |
| callback | AsyncCallback
<
void
>
| 是 | 异步回调 |
-
示例:
```
resourceManager.getResourceManager((error, mgr) => {
mgr.closeRawFileDescriptor("test.xml", (error, value) => {
if (error != null) {
console.log(value);
}
});
});
```
### closeRawFileDescriptor<sup>8+</sup>
closeRawFileDescriptor(path: string): Promise
<
void
>
用户关闭指定路径打开的rawfile文件的descriptor,使用Promise形式返回。
**系统能力**
:SystemCapability.Global.ResourceManager
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| path | string | 是 | rawfile文件路径 |
-
返回值:
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
void
>
| 无返回值 |
-
示例:
```
resourceManager.getResourceManager((error, mgr) => {
mgr.closeRawFileDescriptor("test.xml").then(value => {
console.log(value);
}).catch(error => {
console.log("closeRawFileDescriptor promise " + error);
});
});
```
### release
release();
用户释放创建的resourceManager。
**系统能力**
:SystemCapability.Global.ResourceManager
-
示例:
```
resourceManager.getResourceManager((error, mgr) => {
mgr.release((error, value) => {
if (error != null) {
console.log(value);
}
});
});
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录