Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
c70ca603
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看板
提交
c70ca603
编写于
12月 20, 2022
作者:
C
changzheng6
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update zlib docs
Signed-off-by:
N
changzheng6
<
hanfeng6@huawei.com
>
上级
0ed48d81
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
24 addition
and
21 deletion
+24
-21
zh-cn/application-dev/reference/apis/js-apis-zlib.md
zh-cn/application-dev/reference/apis/js-apis-zlib.md
+17
-14
zh-cn/application-dev/reference/errorcodes/errorcode-zlib.md
zh-cn/application-dev/reference/errorcodes/errorcode-zlib.md
+7
-7
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-zlib.md
浏览文件 @
c70ca603
...
...
@@ -25,7 +25,7 @@ zipFile(inFile: string, outFile: string, options: Options): Promise<void>
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------------- | ---- | ------------------------------------------------------------ |
| inFile | string | 是 | 指定
压缩的文件夹路径或者文件路径,对应的路径
参考
[
FA模型
](
js-apis-inner-app-context.md
)
,
[
Stage模型
](
js-apis-application-context.md
)
。 |
| inFile | string | 是 | 指定
的待解压缩文件的文件路径,路径必须为沙箱路径,沙箱路径可以通过context获取,可
参考
[
FA模型
](
js-apis-inner-app-context.md
)
,
[
Stage模型
](
js-apis-application-context.md
)
。 |
| outFile | string | 是 | 指定压缩结果的文件路径(文件的扩展名zip)。 |
| options |
[
Options
](
#options
)
| 是 | 压缩的可选参数。 |
...
...
@@ -39,6 +39,7 @@ zipFile(inFile: string, outFile: string, options: Options): Promise<void>
```
typescript
//【压缩文件 例子1】
// 代码中使用的路径需为应用的沙箱路径,如/data/storage/el2/base/haps,也可以通过context获取
import
zlib
from
'
@ohos.zlib
'
;
let
inFile
=
'
/xxx/filename.xxx
'
;
let
outFile
=
'
/xxx/xxx.zip
'
;
...
...
@@ -59,6 +60,7 @@ zlib.zipFile(inFile, outFile, options).then((data) => {
```
typescript
// 【压缩文件夹 例子2】
// 代码中使用的路径需为应用的沙箱路径,如/data/storage/el2/base/haps,也可以通过context获取
import
zlib
from
'
@ohos.zlib
'
;
let
inFile
=
'
/xxx/xxx
'
;
let
outFile
=
'
/xxx/xxx.zip
'
;
...
...
@@ -89,7 +91,7 @@ unzipFile(inFile:string, outFile:string, options: Options): Promise<void>
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------------- | ---- | ------------------------------------------------------------ |
| inFile | string | 是 | 指定
压缩的文件夹路径或者文件路径,对应的路径参考
[
FA模型
](
js-apis-inner-app-context.md
)
,
[
s
tage模型
](
js-apis-application-context.md
)
。 |
| inFile | string | 是 | 指定
的待解压缩文件的文件路径,路径必须为沙箱路径,沙箱路径可以通过context获取,可参考
[
FA模型
](
js-apis-inner-app-context.md
)
,
[
S
tage模型
](
js-apis-application-context.md
)
。 |
| outFile | string | 是 | 指定的解压文件路径。 |
| options |
[
Options
](
#options
)
| 是 | 解压的可选参数。 |
...
...
@@ -103,6 +105,7 @@ unzipFile(inFile:string, outFile:string, options: Options): Promise<void>
```
typescript
// 【解压缩 例子1】
// 代码中使用的路径需为应用的沙箱路径,如/data/storage/el2/base/haps,也可以通过context获取
import
zlib
from
'
@ohos.zlib
'
;
let
inFile
=
'
/xx/xxx.zip
'
;
let
outFile
=
'
/xxx
'
;
...
...
@@ -131,7 +134,7 @@ compressFile(inFile: string, outFile: string, options: Options, callback: AsyncC
| 参数名 | 类型 | 必填 | 说明 |
| ----------------------- | ------------------- | ---- | ------------------------------------------------------------ |
| inFile | string | 是 | 指定
压缩的文件夹路径或者文件路径,对应的路径参考
[
FA模型
](
js-apis-inner-app-context.md
)
,
[
s
tage模型
](
js-apis-application-context.md
)
。 |
| inFile | string | 是 | 指定
的待解压缩文件的文件路径,路径必须为沙箱路径,沙箱路径可以通过context获取,可参考
[
FA模型
](
js-apis-inner-app-context.md
)
,
[
S
tage模型
](
js-apis-application-context.md
)
。 |
| outFile | string | 是 | 指定的解压文件路径。 |
| options |
[
Options
](
#options
)
| 是 | 压缩的配置参数。 |
| AsyncCallback
<
**void**
>
| callback | 否 | 压缩时的回调函数。 |
...
...
@@ -141,8 +144,8 @@ compressFile(inFile: string, outFile: string, options: Options, callback: AsyncC
以下错误码的详细介绍请参见
[
ohos.zlib错误码
](
../errorcodes/errorcode-zlib.md
)
。
| 错误码ID | 错误信息 |
| -------- | --------------------------------------|
| 900001 | The
I
nput source file is invalid. |
| 900002 | The
I
nput destination file is invalid. |
| 900001 | The
i
nput source file is invalid. |
| 900002 | The
i
nput destination file is invalid. |
**示例**
...
...
@@ -179,7 +182,7 @@ compressFile(inFile: string, outFile: string, options: Options): Promise\<void>;
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------------- | ---- | ------------------------------------------------------------ |
| inFile | string | 是 | 指定
压缩的文件夹路径或者文件路径,对应的路径参考
[
FA模型
](
js-apis-inner-app-context.md
)
,
[
s
tage模型
](
js-apis-application-context.md
)
。 |
| inFile | string | 是 | 指定
的待解压缩文件的文件路径,路径必须为沙箱路径,沙箱路径可以通过context获取,可参考
[
FA模型
](
js-apis-inner-app-context.md
)
,
[
S
tage模型
](
js-apis-application-context.md
)
。 |
| outFile | string | 是 | 指定的解压文件路径。 |
| options |
[
Options
](
#options
)
| 是 | 压缩的配置参数。 |
...
...
@@ -189,8 +192,8 @@ compressFile(inFile: string, outFile: string, options: Options): Promise\<void>;
| 错误码ID | 错误信息 |
| -------- | ------------------------------------- |
| 900001 | The
I
nput source file is invalid. |
| 900002 | The
I
nput destination file is invalid. |
| 900001 | The
i
nput source file is invalid. |
| 900002 | The
i
nput destination file is invalid. |
```
typescript
// 【压缩文件 例子2】
...
...
@@ -229,7 +232,7 @@ decompressFile(inFile: string, outFile: string, options: Options, callback: Asyn
| 参数名 | 类型 | 必填 | 说明 |
| ----------------------- | ------------------- | ---- | ------------------------------------------------------------ |
| inFile | string | 是 | 指定的待解压缩文件的文件路径,
对应的路径参考
[
FA模型
](
js-apis-inner-app-context.md
)
,
[
s
tage模型
](
js-apis-application-context.md
)
。 |
| inFile | string | 是 | 指定的待解压缩文件的文件路径,
路径必须为沙箱路径,沙箱路径可以通过context获取,可参考
[
FA模型
](
js-apis-inner-app-context.md
)
,
[
S
tage模型
](
js-apis-application-context.md
)
。 |
| outFile | string | 是 | 指定的解压后的目录路径。 |
| options |
[
Options
](
#options
)
| 是 | 解压的配置参数。 |
| AsyncCallback
<
**void**
>
| callback | 否 | 解压是的回调函数。 |
...
...
@@ -240,8 +243,8 @@ decompressFile(inFile: string, outFile: string, options: Options, callback: Asyn
| 错误码ID | 错误信息
| -------- | --------------------------------------|
| 900001 | The
I
nput source file is invalid. |
| 900002 | The
I
nput destination file is invalid. |
| 900001 | The
i
nput source file is invalid. |
| 900002 | The
i
nput destination file is invalid. |
**示例**
...
...
@@ -278,7 +281,7 @@ decompressFile(inFile: string, outFile: string, options: Options): Promise\<void
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------------- | ---- | ------------------------------------------------------------ |
| inFile | string | 是 | 指定的待解压缩文件的文件路径,
对应的路径参考
[
FA模型
](
js-apis-inner-app-context.md
)
,
[
s
tage模型
](
js-apis-application-context.md
)
。 |
| inFile | string | 是 | 指定的待解压缩文件的文件路径,
路径必须为沙箱路径,沙箱路径可以通过context获取,可参考
[
FA模型
](
js-apis-inner-app-context.md
)
,
[
S
tage模型
](
js-apis-application-context.md
)
。 |
| outFile | string | 是 | 指定的解压后的目录路径。 |
| options |
[
Options
](
#options
)
| 是 | 解压时的配置参数。 |
...
...
@@ -288,8 +291,8 @@ decompressFile(inFile: string, outFile: string, options: Options): Promise\<void
| 错误码ID | 错误信息 |
| ------ | ------------------------------------- |
| 900001 | The
I
nput source file is invalid. |
| 900002 | The
I
nput destination file is invalid. |
| 900001 | The
i
nput source file is invalid. |
| 900002 | The
i
nput destination file is invalid. |
```
typescript
// 【解压缩 例子2】
...
...
zh-cn/application-dev/reference/errorcodes/errorcode-zlib.md
浏览文件 @
c70ca603
...
...
@@ -8,11 +8,11 @@ The input source file is invalid.
**错误描述**
当调用compress
或decompress
接口时,传入源文件无效。
当调用compress
File或decompressFile
接口时,传入源文件无效。
**可能原因**
当调用compress
接口时,传入的待压缩的文件不存在;当调用decompress
接口时,传入的待解压缩的文件不存在。
当调用compress
File接口时,传入的待压缩的文件不存在;当调用decompressFile
接口时,传入的待解压缩的文件不存在。
**处理步骤**
...
...
@@ -27,14 +27,14 @@ The input destination file is invalid.
**错误描述**
当调用compress
或decompress
接口时,传入目标文件无效。
当调用compress
File或decompressFile
接口时,传入目标文件无效。
**可能原因**
1.
当调用compress接口时,传入的目标文件路径无效,如不存在的沙箱路径。
2.
当调用decompress接口时,传入的目标目录不存在。
1.
当调用compress
File
接口时,传入的目标文件路径无效,如不存在的沙箱路径。
2.
当调用decompress
File
接口时,传入的目标目录不存在。
**处理步骤**
1.
检查目标文件路径是否正确,不正确填写正确的沙箱路径。
2.
检查目标文件目录是否存在,不存在新建这个路径。
\ No newline at end of file
1.
检查目标文件路径是否正确,如果不正确,填写正确的沙箱路径。
2.
检查目标文件目录是否存在,如果不存在,新建这个路径。
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录