js-apis-buffer.md 71.9 KB
Newer Older
1
# @ohos.buffer (Buffer)
L
liu-ganlin 已提交
2

3
Buffer对象用于表示固定长度的字节序列,是专门存放二进制数据的缓存区。
L
liu-ganlin 已提交
4

5
**推荐使用场景:** 可用于处理大量二进制数据,图片处理、文件接收上传等。
L
liu-ganlin 已提交
6

7 8 9
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
>
> 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
L
liu-ganlin 已提交
10 11 12 13 14 15 16

## 导入模块

```ts
import buffer from '@ohos.buffer';
```

L
liu-ganlin 已提交
17 18 19 20 21 22 23 24
## BufferEncoding

表示支持的编码格式字符串。

**系统能力:** SystemCapability.Utils.Lang

| 编码格式    | 说明                 |
| ------- | -------------------- |
25 26 27 28 29 30 31 32 33 34 35
| 'ascii' | 表示ascii格式,不区分大小写。 |
| 'utf8' | 表示utf8格式,不区分大小写。 |
| 'utf-8' | 表示utf8格式,不区分大小写。 |
| 'utf16le' | 表示utf16小端序格式,不区分大小写。 |
| 'ucs2' | 表示utf16小端序格式,不区分大小写。 |
| 'ucs-2' | 表示utf16小端序格式,不区分大小写。 |
| 'base64' | 表示base64格式,不区分大小写。 |
| 'base64url' | 表示base64格式,不区分大小写。 |
| 'latin1' | 表示ascii格式,不区分大小写。 |
| 'binary' | 表示二进制格式,不区分大小写。 |
| 'hex' | 表示十六进制格式,不区分大小写。 |
L
liu-ganlin 已提交
36

37
## 属性
L
lengchangjing 已提交
38 39 40

**系统能力:** SystemCapability.Utils.Lang

L
liu-ganlin 已提交
41
| 名称 | 类型 | 可读 | 可写 | 说明 |
L
lengchangjing 已提交
42
| -------- | -------- | -------- | -------- | -------- |
43
| length | number | 是 | 否 | Buffer对象的字节长度。 |
L
lengchangjing 已提交
44
| buffer | ArrayBuffer | 是 | 否 | ArrayBuffer对象。 |
45
| byteOffset | number | 是 | 否 | 当前Buffer所在内存池的偏移量。 |
L
lengchangjing 已提交
46

L
lengchangjing 已提交
47 48
**错误码:**

49
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
50

L
liu-ganlin 已提交
51
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
52 53 54 55 56 57 58 59 60
| -------- | -------- |
| 10200013 | Cannot set property ${propertyName} of Buffer which has only a getter. |

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from("1236");
L
liu-ganlin 已提交
61 62 63 64
console.log(JSON.stringify(buf.length));
let arrayBuffer = buf.buffer;
console.log(JSON.stringify(new Uint8Array(arrayBuffer)));
console.log(JSON.stringify(buf.byteOffset));
L
lengchangjing 已提交
65 66
```

67
## buffer.alloc
L
liu-ganlin 已提交
68 69 70

alloc(size: number, fill?: string | Buffer | number, encoding?: BufferEncoding): Buffer

71
创建一定字节长度的Buffer对象,并初始化。
L
liu-ganlin 已提交
72 73 74 75 76 77 78

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
79 80 81
| size | number | 是 | 指定的Buffer对象长度,单位:字节。 |
| fill | string \| Buffer \| number | 否 | 填充至新缓存区的值,默认值: 0。 |
| encoding | [BufferEncoding](#bufferencoding) | 否 | 编码格式(当`fill`为string时,才有意义)。 默认值: 'utf-8'。 |
L
liu-ganlin 已提交
82 83 84 85 86

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
87
| Buffer | 返回一个Buffer对象。 |
L
liu-ganlin 已提交
88 89 90 91 92 93 94 95 96 97 98

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf1 = buffer.alloc(5);
let buf2 = buffer.alloc(5, 'a');
let buf3 = buffer.alloc(11, 'aGVsbG8gd29ybGQ=', 'base64');
```

99
## buffer.allocUninitializedFromPool
L
liu-ganlin 已提交
100 101 102

allocUninitializedFromPool(size: number): Buffer

103 104
创建指定大小未被初始化的Buffer对象。内存从缓冲池分配。
创建的Buffer的内容未知,需要使用[buffer.fill](#bufferfill)函数来初始化Buffer对象。
L
liu-ganlin 已提交
105 106 107 108 109 110 111

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
112
| size | number | 是 | 指定的Buffer对象长度,单位:字节。 |
L
liu-ganlin 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Buffer | 未初始化的Buffer实例。 |

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(10);
buf.fill(0);
```

129
## buffer.allocUninitialized
L
liu-ganlin 已提交
130 131 132

allocUninitialized(size: number): Buffer

133 134
创建指定大小未被初始化的Buffer实例。内存不从缓冲池分配。
创建的Buffer的内容未知,需要使用[buffer.fill](#bufferfill)函数来初始化Buffer对象。
L
liu-ganlin 已提交
135 136 137 138 139 140 141

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
142
| size | number | 是 |指定的Buffer对象长度,单位:字节。 |
L
liu-ganlin 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Buffer | 未初始化的Buffer实例。 |

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitialized(10);
buf.fill(0);
```

159
## buffer.byteLength
L
liu-ganlin 已提交
160

L
liu-ganlin 已提交
161
byteLength(string: string | Buffer | TypedArray | DataView | ArrayBuffer | SharedArrayBuffer, encoding?: BufferEncoding): number
L
liu-ganlin 已提交
162

163
根据不同的编码方法,返回指定字符串的字节数。
L
liu-ganlin 已提交
164 165 166 167 168 169 170

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
171
| string | string \| Buffer \| TypedArray \| DataView \| ArrayBuffer \| SharedArrayBuffer | 是 | 指定字符串。 |
172
| encoding | [BufferEncoding](#bufferencoding) | 否 | 编码格式。 默认值: 'utf-8'。 |
L
liu-ganlin 已提交
173 174 175 176 177

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
178
| number | 返回指定字符串的字节数。 |
L
liu-ganlin 已提交
179 180 181 182 183 184 185

**示例:**

```ts
import buffer from '@ohos.buffer';

let str = '\u00bd + \u00bc = \u00be';
L
liu-ganlin 已提交
186
console.log(`${str}: ${str.length} characters, ${buffer.byteLength(str, 'utf-8')} bytes`);
L
liu-ganlin 已提交
187 188 189
// 打印: ½ + ¼ = ¾: 9 characters, 12 bytes
```

190
## buffer.compare
L
liu-ganlin 已提交
191

L
liu-ganlin 已提交
192
compare(buf1: Buffer | Uint8Array, buf2: Buffer | Uint8Array): -1 | 0 | 1
L
liu-ganlin 已提交
193

194
返回两个数组的比较结果,通常用于对Buffer对象数组进行排序。
L
liu-ganlin 已提交
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209


**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| buf1 | Buffer \| Uint8Array | 是 | 待比较数组。 |
| buf2 | Buffer \| Uint8Array | 是 | 待比较数组。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
210
| -1&nbsp;\|&nbsp;0&nbsp;\|&nbsp;1 | 如果buf1与buf2相同,则返回0。<br/>如果排序时buf1位于buf2之后,则返回1。<br/>如果排序时buf1位于buf2之前,则返回-1。 |
L
liu-ganlin 已提交
211 212 213 214 215 216 217 218

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf1 = buffer.from('1234');
let buf2 = buffer.from('0123');
L
liu-ganlin 已提交
219
let res = buf1.compare(buf2);
L
liu-ganlin 已提交
220

221
console.log(Number(res).toString()); // 打印 1
L
liu-ganlin 已提交
222 223
```

224
## buffer.concat
L
liu-ganlin 已提交
225 226 227

concat(list: Buffer[] | Uint8Array[], totalLength?: number): Buffer

228
将数组中的内容复制指定字节长度到新的Buffer对象中并返回。
L
liu-ganlin 已提交
229 230 231 232 233 234 235 236

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| list | Buffer[]&nbsp;\|&nbsp;Uint8Array[] | 是 | 实例数组。 |
237
| totalLength | number | 否 | 需要复制的总字节长度。 |
L
liu-ganlin 已提交
238 239 240 241 242

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
243
| Buffer | 返回新的Buffer对象。 |
L
liu-ganlin 已提交
244

L
lengchangjing 已提交
245 246
**错误码:**

247
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
248

L
liu-ganlin 已提交
249
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
250 251 252
| -------- | -------- |
| 10200001 | The value of "totalLength" is out of range. |

L
liu-ganlin 已提交
253 254 255 256 257 258 259 260
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf1 = buffer.from("1234");
let buf2 = buffer.from("abcd");
let buf = buffer.concat([buf1, buf2]);
L
liu-ganlin 已提交
261
console.log(buf.toString('hex')); // 3132333461626364
L
liu-ganlin 已提交
262 263
```

264
## buffer.from
L
liu-ganlin 已提交
265

L
liu-ganlin 已提交
266
from(array: number[]): Buffer;
L
liu-ganlin 已提交
267

268
根据指定数组创建新的Buffer对象。
L
liu-ganlin 已提交
269 270 271 272 273 274 275 276 277 278 279 280 281

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| array | number[] | 是 | 指定数组。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
282
| Buffer | 新的Buffer对象。 |
L
liu-ganlin 已提交
283 284 285 286 287 288 289

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]);
L
liu-ganlin 已提交
290
console.log(buf.toString('hex')); // 627566666572
L
liu-ganlin 已提交
291 292
```

293
## buffer.from
L
liu-ganlin 已提交
294 295 296

from(arrayBuffer: ArrayBuffer | SharedArrayBuffer, byteOffset?: number, length?: number): Buffer

297
创建指定长度的与`arrayBuffer`共享内存的Buffer对象。
L
liu-ganlin 已提交
298 299 300 301 302 303 304 305 306

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| arrayBuffer | ArrayBuffer&nbsp;\|&nbsp;SharedArrayBuffer | 是 | 实例对象。 |
| byteOffset | number | 否 | 字节偏移量,默认值: 0。 |
307
| length | number | 否 | 字节长度, 默认值: (arrayBuffer.byteLength - byteOffset)。 |
L
liu-ganlin 已提交
308 309 310 311 312

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
313
| Buffer | 返回一个共享内存的Buffer对象。 |
L
liu-ganlin 已提交
314

L
lengchangjing 已提交
315 316
**错误码:**

317
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
318

L
liu-ganlin 已提交
319
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
320 321 322
| -------- | -------- |
| 10200001 | The value of "[byteOffset/length]" is out of range. |

L
liu-ganlin 已提交
323 324 325 326 327 328 329 330 331
**示例:**

```ts
import buffer from '@ohos.buffer';

let ab = new ArrayBuffer(10);
let buf = buffer.from(ab, 0, 2);
```

332
## buffer.from
L
liu-ganlin 已提交
333

L
liu-ganlin 已提交
334
from(buffer: Buffer | Uint8Array): Buffer
L
liu-ganlin 已提交
335

336
创建并复制`buffer`数据到新的Buffer对象并返回。
L
liu-ganlin 已提交
337 338 339 340 341 342 343

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
344
| buffer | Buffer&nbsp;\|&nbsp;Uint8Array | 是 | 对象数据。 |
L
liu-ganlin 已提交
345 346 347 348 349

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
350
| Buffer | 新的Buffer对象。 |
L
liu-ganlin 已提交
351 352 353 354 355 356 357 358 359 360

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf1 = buffer.from('buffer');
let buf2 = buffer.from(buf1);
```

361
## buffer.from
L
liu-ganlin 已提交
362 363 364

from(object: Object, offsetOrEncoding: number | string, length: number): Buffer

365
根据指定的`object`类型数据,创建新的Buffer对象。
L
liu-ganlin 已提交
366 367 368 369 370 371 372

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
373 374
| object | Object | 是 | 支持Symbol.toPrimitive或valueOf()的对象。 |
| offsetOrEncoding | number&nbsp;\|&nbsp;string | 是 | 字节偏移量或编码格式。 |
L
liu-ganlin 已提交
375
| length | number | 是 | 字节长度。 |
L
liu-ganlin 已提交
376 377 378 379 380

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
381
| Buffer | 返回新的Buffer对象。 |
L
liu-ganlin 已提交
382 383 384 385 386 387

**示例:**

```ts
import buffer from '@ohos.buffer';

388
let buf = buffer.from(new String('this is a test'), 'utf8', 14);
L
liu-ganlin 已提交
389 390
```

391
## buffer.from
L
liu-ganlin 已提交
392

L
liu-ganlin 已提交
393
from(string: String, encoding?: BufferEncoding): Buffer
L
liu-ganlin 已提交
394

395
根据指定编码格式的字符串,创建新的Buffer对象。
L
liu-ganlin 已提交
396 397 398 399 400 401 402

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
403
| string | String | 是 | 字符串 |
L
liu-ganlin 已提交
404
| encoding | [BufferEncoding](#bufferencoding) | 否 | 编码格式。 默认值: 'utf-8'。 |
L
liu-ganlin 已提交
405 406 407 408 409

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
410
| Buffer | 返回新的Buffer对象。 |
L
liu-ganlin 已提交
411 412 413 414 415 416 417 418 419 420 421 422 423 424

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf1 = buffer.from('this is a test');
let buf2 = buffer.from('7468697320697320612074c3a97374', 'hex');

console.log(buf1.toString());	// 打印: this is a test
console.log(buf2.toString());
```


425
## buffer.isBuffer
L
liu-ganlin 已提交
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456

isBuffer(obj: Object): boolean

判断`obj`是否为Buffer。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| obj | Object | 是 | 判断对象 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| boolean | 如果obj是Buffer,则返回true,否则返回false。 |

**示例:**

```ts
import buffer from '@ohos.buffer';

buffer.isBuffer(buffer.alloc(10)); // true
buffer.isBuffer(buffer.from('foo')); // true
buffer.isBuffer('a string'); // false
buffer.isBuffer([]); // false
buffer.isBuffer(new Uint8Array(1024)); // false
```

457
## buffer.isEncoding
L
liu-ganlin 已提交
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474

isEncoding(encoding: string): boolean

判断`encoding`是否为支持的编码格式。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| encoding | string | 是 | 编码格式。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
475
| boolean | 是支持的编码格式返回true,反之则返回false。 |
L
liu-ganlin 已提交
476 477 478 479 480 481

**示例:**

```ts
import buffer from '@ohos.buffer';

L
liu-ganlin 已提交
482 483 484 485
console.log(buffer.isEncoding('utf-8').toString());	// 打印: true
console.log(buffer.isEncoding('hex').toString());	// 打印: true
console.log(buffer.isEncoding('utf/8').toString());	// 打印: false
console.log(buffer.isEncoding('').toString());	// 打印: false
L
liu-ganlin 已提交
486 487
```

488
## buffer.compare
L
liu-ganlin 已提交
489 490 491

compare(target: Buffer | Uint8Array, targetStart?: number, targetEnd?: number, sourceStart?: number, sourceEnd?: number): -1 | 0 | 1

492
当前Buffer对象与目标Buffer对象进行比较,并返回Buffer在排序中的顺序结果。
L
liu-ganlin 已提交
493 494 495 496 497 498 499 500 501

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| target | Buffer&nbsp;\|&nbsp;Uint8Array | 是 | 要比较的实例对象。 |
| targetStart | number | 否 | `target`实例中开始的偏移量。 默认值: 0。 |
502
| targetEnd | number | 否 | `target`实例中结束的偏移量(不包含结束位置)。 默认值: 目标对象的字节长度。 |
L
liu-ganlin 已提交
503
| sourceStart | number | 否 | `this`实例中开始的偏移量。 默认值: 0。 |
504
| sourceEnd | number | 否 | `this`实例中结束的偏移量(不包含结束位置)。 默认值: 当前对象的字节长度。 |
L
liu-ganlin 已提交
505

L
lengchangjing 已提交
506 507
**返回值:**

L
liu-ganlin 已提交
508 509
| 类型 | 说明 |
| -------- | -------- |
510
| number | 返回比较结果。-1:当前排列在目标前,0:当前与目标相同,1:当前排列在目标后。 |
L
liu-ganlin 已提交
511

512 513 514 515 516 517 518 519
**错误码:**

以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)

| 错误码ID | 错误信息 |
| -------- | -------- |
| 10200001 | The value of "[targetStart/targetEnd/sourceStart/sourceEnd]" is out of range. |

L
liu-ganlin 已提交
520 521 522 523 524 525 526 527
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf1 = buffer.from([1, 2, 3, 4, 5, 6, 7, 8, 9]);
let buf2 = buffer.from([5, 6, 7, 8, 9, 1, 2, 3, 4]);

L
liu-ganlin 已提交
528 529 530
console.log(buf1.compare(buf2, 5, 9, 0, 4).toString());	// 打印: 0
console.log(buf1.compare(buf2, 0, 6, 4).toString());	// 打印: -1
console.log(buf1.compare(buf2, 5, 6, 5).toString());	// 打印: 1
L
liu-ganlin 已提交
531 532
```

533
## buffer.copy
L
liu-ganlin 已提交
534 535 536 537 538 539 540 541 542 543 544 545 546 547

copy(target: Buffer| Uint8Array, targetStart?: number, sourceStart?: number, sourceEnd?: number): number

`this`实例中指定位置的数据复制到`target`的指定位置上,并返回复制的字节总长度。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| target | Buffer&nbsp;\|&nbsp;Uint8Array | 是 | 要复制到的Buffer或Uint8Array实例。 |
| targetStart | number | 否 | `target`实例中开始写入的偏移量。 默认值: 0。 |
| sourceStart | number | 否 | `this`实例中开始复制的偏移量。 默认值: 0。 |
548
| sourceEnd | number | 否 | `this`实例中结束复制的偏移量(不包含结束位置)。 默认值: 当前对象的字节长度。 |
L
liu-ganlin 已提交
549 550 551 552 553 554 555

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number |  复制的字节总长度。 |

L
lengchangjing 已提交
556 557
**错误码:**

558
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
559

L
liu-ganlin 已提交
560
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
561 562 563
| -------- | -------- |
| 10200001 | The value of "[targetStart/sourceStart/sourceEnd]" is out of range. |

L
liu-ganlin 已提交
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf1 = buffer.allocUninitializedFromPool(26);
let buf2 = buffer.allocUninitializedFromPool(26).fill('!');

for (let i = 0; i < 26; i++) {
  buf1[i] = i + 97;
}

buf1.copy(buf2, 8, 16, 20);
console.log(buf2.toString('ascii', 0, 25));
// 打印: !!!!!!!!qrst!!!!!!!!!!!!!
```

581
## buffer.entries
L
liu-ganlin 已提交
582 583 584 585 586 587 588

entries(): IterableIterator&lt;[number,&nbsp;number]&gt;

返回一个包含key和value的迭代器。

**系统能力:** SystemCapability.Utils.Lang

589 590 591 592 593 594 595
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number |  表示迭代器的key值。 |
| number |  表示迭代器的value值。 |

L
liu-ganlin 已提交
596 597 598 599 600 601 602
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from('buffer');
for (let pair of buf.entries()) {
L
liu-ganlin 已提交
603
  console.log(pair.toString());
L
liu-ganlin 已提交
604 605 606
}
```

607
## buffer.equals
L
liu-ganlin 已提交
608

L
liu-ganlin 已提交
609
equals(otherBuffer: Uint8Array | Buffer): boolean
L
liu-ganlin 已提交
610 611 612 613 614 615 616 617 618

比较`this`实例和otherBuffer实例是否相等。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
619
| otherBuffer | Uint8Array&nbsp;\|&nbsp;Buffer | 是 | 比较的目标对象。 |
L
liu-ganlin 已提交
620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| boolean | 相等则返回true,否则返回false。 |

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf1 = buffer.from('ABC');
let buf2 = buffer.from('414243', 'hex');
let buf3 = buffer.from('ABCD');

L
liu-ganlin 已提交
636 637
console.log(buf1.equals(buf2).toString());	// 打印: true
console.log(buf1.equals(buf3).toString());	// 打印: false
L
liu-ganlin 已提交
638 639
```

640
## buffer.fill
L
liu-ganlin 已提交
641 642 643

fill(value: string | Buffer | Uint8Array | number, offset?: number, end?: number, encoding?: BufferEncoding): Buffer

644
`value`填充当前对象指定位置的数据,默认为循环填充,并返回填充后的Buffer对象。
L
liu-ganlin 已提交
645 646 647 648 649 650 651 652 653

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | string&nbsp;\|&nbsp;Buffer&nbsp;\|&nbsp;Uint8Array&nbsp;\|&nbsp;number | 是 | 用于填充的值。 |
| offset | number | 否 | 起始偏移量。 默认值: 0。 |
654
| end | number | 否 | 结束偏移量(不包含结束位置)。 默认值: 当前对象的字节长度。 |
L
liu-ganlin 已提交
655
| encoding | [BufferEncoding](#bufferencoding) | 否 | 字符编码格式(`value`为string才有意义)。 默认值: 'utf-8'。 |
L
liu-ganlin 已提交
656 657 658 659 660

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
661
| Buffer | 返回一个填充后的Buffer对象。 |
L
liu-ganlin 已提交
662

L
lengchangjing 已提交
663 664
**错误码:**

665
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
666

L
liu-ganlin 已提交
667
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
668 669 670
| -------- | -------- |
| 10200001 | The value of "[offset/end]" is out of range. |

L
liu-ganlin 已提交
671 672 673 674 675 676 677 678 679 680
**示例:**

```ts
import buffer from '@ohos.buffer';

let b = buffer.allocUninitializedFromPool(50).fill('h');
console.log(b.toString());
```


681
## buffer.includes
L
liu-ganlin 已提交
682 683 684 685 686 687 688 689 690 691 692 693 694

includes(value: string | number | Buffer | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): boolean

检查Buffer对象是否包含`value`值。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | string&nbsp;\|&nbsp;number&nbsp;\|&nbsp;Buffer&nbsp;\|&nbsp;Uint8Array | 是 | 要搜索的内容。 |
| byteOffset | number | 否 | 字节偏移量。 如果为负数,则从末尾开始计算偏移量。 默认值: 0。 |
L
liu-ganlin 已提交
695
| encoding | [BufferEncoding](#bufferencoding) | 否 | 字符编码格式。 默认值: 'utf-8'。 |
L
liu-ganlin 已提交
696 697 698 699 700 701 702 703 704 705 706 707 708

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| boolean | 存在为true,否则为false。 |

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from('this is a buffer');
L
liu-ganlin 已提交
709 710
console.log(buf.includes('this').toString());	// 打印: true
console.log(buf.includes('be').toString());	// 打印: false
L
liu-ganlin 已提交
711 712
```

713
## buffer.indexOf
L
liu-ganlin 已提交
714 715 716

indexOf(value: string | number | Buffer | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): number

717
查找当前对象中第一次出现`value`的索引,如果不包含`value`,则为-1。
L
liu-ganlin 已提交
718 719 720 721 722 723 724

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
725
| value | string&nbsp;\|&nbsp;number&nbsp;\|&nbsp;Buffer&nbsp;\|&nbsp;Uint8Array | 是 | 要查找的内容。 |
L
liu-ganlin 已提交
726
| byteOffset | number | 否 | 字节偏移量。 如果为负数,则从末尾开始计算偏移量。 默认值: 0。 |
L
liu-ganlin 已提交
727
| encoding | [BufferEncoding](#bufferencoding) | 否 | 字符编码格式。 默认值: 'utf-8'。 |
L
liu-ganlin 已提交
728 729 730 731 732 733 734 735 736 737 738 739 740

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 第一次出现位置。 |

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from('this is a buffer');
L
liu-ganlin 已提交
741 742
console.log(buf.indexOf('this').toString());	// 打印: 0
console.log(buf.indexOf('is').toString());		// 打印: 2
L
liu-ganlin 已提交
743 744
```

745
## buffer.keys
L
liu-ganlin 已提交
746 747 748

keys(): IterableIterator&lt;number&gt;

749
返回一个包含key值的迭代器。
L
liu-ganlin 已提交
750 751 752 753 754 755 756

**系统能力:** SystemCapability.Utils.Lang

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
757
|  IterableIterator&lt;number&gt; | 返回一个包含key值的迭代器。 |
L
liu-ganlin 已提交
758 759 760 761 762 763 764 765

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from('buffer');
for (const key of buf.keys()) {
L
liu-ganlin 已提交
766
  console.log(key.toString());
L
liu-ganlin 已提交
767 768 769
}
```

770
## buffer.lastIndexOf
L
liu-ganlin 已提交
771 772 773 774 775 776 777 778 779 780 781 782 783

lastIndexOf(value: string | number | Buffer | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): number

返回`this`实例中最后一次出现`value`的索引,如果对象不包含,则为-1。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | string&nbsp;\|&nbsp;number&nbsp;\|&nbsp;Buffer&nbsp;\|&nbsp;Uint8Array | 是 | 要搜索的内容。 |
| byteOffset | number | 否 | 字节偏移量。 如果为负数,则从末尾开始计算偏移量。 默认值: 0。 |
L
liu-ganlin 已提交
784
| encoding | [BufferEncoding](#bufferencoding) | 否 | 字符编码格式。 默认值: 'utf-8'。 |
L
liu-ganlin 已提交
785 786 787 788 789 790 791 792 793 794 795 796 797

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 最后一次出现`value`值的索引。 |

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from('this buffer is a buffer');
L
liu-ganlin 已提交
798 799
console.log(buf.lastIndexOf('this').toString());	// 打印: 0
console.log(buf.lastIndexOf('buffer').toString());	// 打印: 17
L
liu-ganlin 已提交
800 801 802
```


803
## buffer.readBigInt64BE
L
liu-ganlin 已提交
804

L
liu-ganlin 已提交
805
readBigInt64BE(offset?: number): bigint
L
liu-ganlin 已提交
806 807 808 809 810 811 812 813 814

从指定的`offset`处读取有符号的大端序64位整数。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
815
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
816 817 818 819 820

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
L
liu-ganlin 已提交
821
| bigint | 读取出的内容。 |
L
liu-ganlin 已提交
822

L
lengchangjing 已提交
823 824
**错误码:**

825
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
826

L
liu-ganlin 已提交
827
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
828 829 830
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
831 832 833 834 835 836 837
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x70, 
        0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78]);
L
liu-ganlin 已提交
838
console.log(buf.readBigInt64BE(0).toString());
L
lengchangjing 已提交
839 840 841

let buf1 = buffer.allocUninitializedFromPool(8);
buf1.writeBigInt64BE(0x0102030405060708n, 0);
L
liu-ganlin 已提交
842 843
```

844
## buffer.readBigInt64LE
L
liu-ganlin 已提交
845

L
liu-ganlin 已提交
846
readBigInt64LE(offset?: number): bigint
L
liu-ganlin 已提交
847

L
liu-ganlin 已提交
848
从指定的`offset`处读取有符号的小端序64位整数。
L
liu-ganlin 已提交
849 850 851 852 853 854 855

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
856
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
857 858 859 860 861

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
L
liu-ganlin 已提交
862
| bigint | 读取出的内容。 |
L
liu-ganlin 已提交
863

L
lengchangjing 已提交
864 865
**错误码:**

866
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
867

L
liu-ganlin 已提交
868
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
869 870 871
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
872 873 874 875 876 877 878
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x70, 
        0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78]);
L
liu-ganlin 已提交
879
console.log(buf.readBigInt64LE(0).toString());
L
lengchangjing 已提交
880 881 882

let buf1 = buffer.allocUninitializedFromPool(8);
buf1.writeBigInt64BE(0x0102030405060708n, 0);
L
liu-ganlin 已提交
883 884
```

885
## buffer.readBigUInt64BE
L
liu-ganlin 已提交
886

L
liu-ganlin 已提交
887
readBigUInt64BE(offset?: number): bigint
L
liu-ganlin 已提交
888 889 890 891 892 893 894 895 896

从指定的`offset`处读取无符号的大端序64位整数。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
897
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
898 899 900 901 902

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
L
liu-ganlin 已提交
903
| bigint | 读取出的内容。 |
L
liu-ganlin 已提交
904

L
lengchangjing 已提交
905 906
**错误码:**

907
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
908

L
liu-ganlin 已提交
909
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
910 911 912
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
913 914 915 916 917 918 919
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x70, 
        0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78]);
L
liu-ganlin 已提交
920
console.log(buf.readBigUInt64BE(0).toString());
L
lengchangjing 已提交
921 922 923

let buf1 = buffer.allocUninitializedFromPool(8);
buf1.writeBigUInt64BE(0xdecafafecacefaden, 0);
L
liu-ganlin 已提交
924 925
```

926
## buffer.readBigUInt64LE
L
liu-ganlin 已提交
927

L
liu-ganlin 已提交
928
readBigUInt64LE(offset?: number): bigint
L
liu-ganlin 已提交
929 930 931 932 933 934 935 936 937

从指定的`offset`处读取无符号的小端序64位整数。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
938
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
939 940 941 942 943

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
L
liu-ganlin 已提交
944
| bigint | 读取出的内容。 |
L
liu-ganlin 已提交
945

L
lengchangjing 已提交
946 947
**错误码:**

948
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
949

L
liu-ganlin 已提交
950
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
951 952 953
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
954 955 956 957 958 959 960
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x70, 
        0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78]);
L
liu-ganlin 已提交
961
console.log(buf.readBigUInt64LE(0).toString());
L
lengchangjing 已提交
962 963 964

let buf1 = buffer.allocUninitializedFromPool(8);
buf1.writeBigUInt64BE(0xdecafafecacefaden, 0);
L
liu-ganlin 已提交
965 966
```

967
## buffer.readDoubleBE
L
liu-ganlin 已提交
968

L
liu-ganlin 已提交
969
readDoubleBE(offset?: number): number
L
liu-ganlin 已提交
970 971 972 973 974 975 976 977 978

从指定`offset`处读取64位大端序双精度值。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
979
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
980 981 982 983 984 985 986

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
987 988
**错误码:**

989
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
990

L
liu-ganlin 已提交
991
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
992 993 994
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
995 996 997 998 999 1000
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([1, 2, 3, 4, 5, 6, 7, 8]);
L
liu-ganlin 已提交
1001
console.log(buf.readDoubleBE(0).toString());
L
lengchangjing 已提交
1002 1003 1004

let buf1 = buffer.allocUninitializedFromPool(8);
buf1.writeDoubleBE(123.456, 0);
L
liu-ganlin 已提交
1005 1006
```

1007
## buffer.readDoubleLE
L
liu-ganlin 已提交
1008

L
liu-ganlin 已提交
1009
readDoubleLE(offset?: number): number
L
liu-ganlin 已提交
1010 1011 1012 1013 1014 1015 1016 1017 1018

从指定`offset`处读取64位小端序双精度值。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1019
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1020 1021 1022 1023 1024 1025 1026

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
1027 1028
**错误码:**

1029
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1030

L
liu-ganlin 已提交
1031
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1032 1033 1034
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1035 1036 1037 1038 1039 1040
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([1, 2, 3, 4, 5, 6, 7, 8]);
L
liu-ganlin 已提交
1041
console.log(buf.readDoubleLE(0).toString());
L
lengchangjing 已提交
1042 1043 1044

let buf1 = buffer.allocUninitializedFromPool(8);
buf1.writeDoubleLE(123.456, 0);
L
liu-ganlin 已提交
1045 1046
```

1047
## buffer.readFloatBE
L
liu-ganlin 已提交
1048

L
liu-ganlin 已提交
1049
readFloatBE(offset?: number): number
L
liu-ganlin 已提交
1050 1051 1052 1053 1054 1055 1056 1057 1058

从指定`offset`处读取32位大端序浮点数。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1059
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1060 1061 1062 1063 1064 1065 1066

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
1067 1068
**错误码:**

1069
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1070

L
liu-ganlin 已提交
1071
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1072 1073 1074
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1075 1076 1077 1078 1079 1080
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([1, 2, 3, 4, 5, 6, 7, 8]);
L
liu-ganlin 已提交
1081
console.log(buf.readFloatBE(0).toString());
L
lengchangjing 已提交
1082 1083 1084

let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeFloatBE(0xcabcbcbc, 0);
L
liu-ganlin 已提交
1085 1086
```

1087
## buffer.readFloatLE
L
liu-ganlin 已提交
1088

L
liu-ganlin 已提交
1089
readFloatLE(offset?: number): number
L
liu-ganlin 已提交
1090 1091 1092 1093 1094 1095 1096 1097 1098

从指定`offset`处读取32位小端序浮点数。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1099
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1100 1101 1102 1103 1104 1105 1106

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
1107 1108
**错误码:**

1109
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1110

L
liu-ganlin 已提交
1111
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1112 1113 1114
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1115 1116 1117 1118 1119 1120
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([1, 2, 3, 4, 5, 6, 7, 8]);
L
liu-ganlin 已提交
1121
console.log(buf.readFloatLE(0).toString());
L
lengchangjing 已提交
1122 1123 1124

let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeFloatLE(0xcabcbcbc, 0);
L
liu-ganlin 已提交
1125 1126
```

1127
## buffer.readInt8
L
liu-ganlin 已提交
1128

L
liu-ganlin 已提交
1129
readInt8(offset?: number): number
L
liu-ganlin 已提交
1130 1131 1132 1133 1134 1135 1136 1137 1138

从指定的`offset`处读取有符号的8位整数。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1139
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1140 1141 1142 1143 1144 1145 1146

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
1147 1148
**错误码:**

1149
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1150

L
liu-ganlin 已提交
1151
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1152 1153 1154
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1155 1156 1157 1158 1159 1160
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([-1, 5]);
L
liu-ganlin 已提交
1161 1162
console.log(buf.readInt8(0).toString());	// 打印: -1
console.log(buf.readInt8(1).toString());	// 打印: 5
L
lengchangjing 已提交
1163 1164 1165

let buf1 = buffer.allocUninitializedFromPool(2);
buf1.writeInt8(0x12);
L
liu-ganlin 已提交
1166 1167
```

1168
## buffer.readInt16BE
L
liu-ganlin 已提交
1169

L
liu-ganlin 已提交
1170
readInt16BE(offset?: number): number
L
liu-ganlin 已提交
1171 1172 1173 1174 1175 1176 1177 1178 1179

从指定的`offset`处读取有符号的大端序16位整数。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1180
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1181 1182 1183 1184 1185 1186 1187

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
1188 1189
**错误码:**

1190
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1191

L
liu-ganlin 已提交
1192
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1193 1194 1195
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1196 1197 1198 1199 1200
**示例:**

```ts
import buffer from '@ohos.buffer';

L
liu-ganlin 已提交
1201 1202
let buf = buffer.from([0, 5]);
console.log(buf.readInt16BE(0).toString());	// 打印: 5
L
lengchangjing 已提交
1203 1204 1205

let buf1 = buffer.alloc(2);
buf1.writeInt16BE(0x1234, 0);
L
liu-ganlin 已提交
1206 1207
```

1208
## buffer.readInt16LE
L
liu-ganlin 已提交
1209

L
liu-ganlin 已提交
1210
readInt16LE(offset?: number): number
L
liu-ganlin 已提交
1211

1212
从指定的`offset`处读取有符号的小端序16位整数。
L
liu-ganlin 已提交
1213 1214 1215 1216 1217 1218 1219

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1220
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1221 1222 1223 1224 1225 1226 1227

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
1228 1229
**错误码:**

1230
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1231

L
liu-ganlin 已提交
1232
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1233 1234 1235
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1236 1237 1238 1239 1240
**示例:**

```ts
import buffer from '@ohos.buffer';

L
liu-ganlin 已提交
1241 1242
let buf = buffer.from([0, 5]);
console.log(buf.readInt16LE(0).toString());	// 打印: 1280
L
lengchangjing 已提交
1243 1244 1245

let buf1 = buffer.alloc(2);
buf1.writeInt16BE(0x1234, 0);
L
liu-ganlin 已提交
1246 1247
```

1248
## buffer.readInt32BE
L
liu-ganlin 已提交
1249

L
liu-ganlin 已提交
1250
readInt32BE(offset?: number): number
L
liu-ganlin 已提交
1251

1252
从指定的`offset`处读取有符号的大端序32位整数。
L
liu-ganlin 已提交
1253 1254 1255 1256 1257 1258 1259

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1260
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1261 1262 1263 1264 1265 1266 1267

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
1268 1269
**错误码:**

1270
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1271

L
liu-ganlin 已提交
1272
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1273 1274 1275
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1276 1277 1278 1279 1280 1281
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([0, 0, 0, 5]);
L
liu-ganlin 已提交
1282
console.log(buf.readInt32BE(0).toString());	// 打印: 5
L
lengchangjing 已提交
1283 1284 1285

let buf1 = buffer.alloc(4);
buf1.writeInt32BE(0x12345678, 0);
L
liu-ganlin 已提交
1286 1287
```

1288
## buffer.readInt32LE
L
liu-ganlin 已提交
1289

L
liu-ganlin 已提交
1290
readInt32LE(offset?: number): number
L
liu-ganlin 已提交
1291

1292
从指定的`offset`处读取有符号的小端序32位整数。
L
liu-ganlin 已提交
1293 1294 1295 1296 1297 1298 1299

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1300
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1301 1302 1303 1304 1305 1306 1307

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
1308 1309
**错误码:**

1310
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1311

L
liu-ganlin 已提交
1312
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1313 1314 1315
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1316 1317 1318 1319 1320 1321
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([0, 0, 0, 5]);
L
liu-ganlin 已提交
1322
console.log(buf.readInt32LE(0).toString());	// 打印: 83886080
L
lengchangjing 已提交
1323 1324 1325

let buf1 = buffer.alloc(4);
buf1.writeInt32BE(0x12345678, 0);
L
liu-ganlin 已提交
1326 1327
```

1328
## buffer.readIntBE
L
liu-ganlin 已提交
1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339

readIntBE(offset: number, byteLength: number): number

从指定的`offset`处的buf读取byteLength个字节,并将结果解释为支持最高48位精度的大端序、二进制补码有符号值。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1340 1341
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 读取的字节数。 |
L
liu-ganlin 已提交
1342 1343 1344 1345 1346 1347 1348 1349


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取的内容。 |

L
lengchangjing 已提交
1350 1351
**错误码:**

1352
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1353

L
liu-ganlin 已提交
1354
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1355 1356 1357
| -------- | -------- |
| 10200001 | The value of "[offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
1358 1359 1360 1361 1362
**示例:**

```ts
import buffer from '@ohos.buffer';

L
liu-ganlin 已提交
1363
let buf = buffer.from("ab");
L
liu-ganlin 已提交
1364
let num = buf.readIntBE(0, 1);
L
liu-ganlin 已提交
1365
console.log(num.toString()); // 97
L
lengchangjing 已提交
1366 1367 1368

let buf1 = buffer.allocUninitializedFromPool(6);
buf1.writeIntBE(0x123456789011, 0, 6);
L
liu-ganlin 已提交
1369 1370 1371
```


1372
## buffer.readIntLE
L
liu-ganlin 已提交
1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383

readIntLE(offset: number, byteLength: number): number

从指定的`offset`处的buf读取`byteLength`个字节,并将结果解释为支持最高48位精度的小端序、二进制补码有符号值。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1384 1385
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 读取的字节数。 |
L
liu-ganlin 已提交
1386 1387 1388 1389 1390 1391 1392 1393


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
1394 1395
**错误码:**

1396
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1397

L
liu-ganlin 已提交
1398
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1399 1400 1401
| -------- | -------- |
| 10200001 | The value of "[offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
1402 1403 1404 1405 1406 1407 1408
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]);
console.log(buf.readIntLE(0, 6).toString(16));
L
lengchangjing 已提交
1409 1410 1411

let buf1 = buffer.allocUninitializedFromPool(6);
buf1.writeIntLE(0x123456789011, 0, 6);
L
liu-ganlin 已提交
1412 1413
```

1414
## buffer.readUInt8
L
liu-ganlin 已提交
1415

L
liu-ganlin 已提交
1416
readUInt8(offset?: number): number
L
liu-ganlin 已提交
1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434

`offset`处读取8位无符号整型数。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
1435 1436
**错误码:**

1437
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1438

L
liu-ganlin 已提交
1439
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1440 1441 1442
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1443 1444 1445 1446 1447 1448
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([1, -2]);
L
liu-ganlin 已提交
1449 1450
console.log(buf.readUInt8(0).toString());
console.log(buf.readUInt8(1).toString());
L
lengchangjing 已提交
1451

L
lengchangjing 已提交
1452 1453
let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeUInt8(0x42);
L
liu-ganlin 已提交
1454 1455
```

1456
## buffer.readUInt16BE
L
liu-ganlin 已提交
1457

L
liu-ganlin 已提交
1458
readUInt16BE(offset?: number): number
L
liu-ganlin 已提交
1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476

从指定的`offset`处的buf读取无符号的大端序16位整数。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
1477 1478
**错误码:**

1479
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1480

L
liu-ganlin 已提交
1481
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1482 1483 1484
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1485 1486 1487 1488 1489 1490 1491 1492
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([0x12, 0x34, 0x56]);
console.log(buf.readUInt16BE(0).toString(16));
console.log(buf.readUInt16BE(1).toString(16));
L
lengchangjing 已提交
1493 1494 1495

let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeUInt16BE(0x1234, 0);
L
liu-ganlin 已提交
1496 1497
```

1498
## buffer.readUInt16LE
L
liu-ganlin 已提交
1499

L
liu-ganlin 已提交
1500
readUInt16LE(offset?: number): number
L
liu-ganlin 已提交
1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518

从指定的`offset`处的buf读取无符号的小端序16位整数。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
1519 1520
**错误码:**

1521
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1522

L
liu-ganlin 已提交
1523
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1524 1525 1526
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1527 1528 1529 1530 1531 1532 1533 1534
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([0x12, 0x34, 0x56]);
console.log(buf.readUInt16LE(0).toString(16));
console.log(buf.readUInt16LE(1).toString(16));
L
lengchangjing 已提交
1535 1536 1537

let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeUInt16LE(0x1234, 0);
L
liu-ganlin 已提交
1538 1539
```

1540
## buffer.readUInt32BE
L
liu-ganlin 已提交
1541

L
liu-ganlin 已提交
1542
readUInt32BE(offset?: number): number
L
liu-ganlin 已提交
1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560

从指定的`offset`处的buf读取无符号的大端序32位整数。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
1561 1562
**错误码:**

1563
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1564

L
liu-ganlin 已提交
1565
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1566 1567 1568
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1569 1570 1571 1572 1573 1574 1575
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([0x12, 0x34, 0x56, 0x78]);
console.log(buf.readUInt32BE(0).toString(16));
L
lengchangjing 已提交
1576 1577 1578

let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeUInt32BE(0x12345678, 0);
L
liu-ganlin 已提交
1579 1580
```

1581
## buffer.readUInt32LE
L
liu-ganlin 已提交
1582

L
liu-ganlin 已提交
1583
readUInt32LE(offset?: number): number
L
liu-ganlin 已提交
1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601

从指定的`offset`处的buf读取无符号的小端序32位整数。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
1602 1603
**错误码:**

1604
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1605

L
liu-ganlin 已提交
1606
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1607 1608 1609
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1610 1611 1612 1613 1614 1615 1616
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([0x12, 0x34, 0x56, 0x78]);
console.log(buf.readUInt32LE(0).toString(16));
L
lengchangjing 已提交
1617 1618 1619

let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeUInt32LE(0x12345678, 0);
L
liu-ganlin 已提交
1620 1621
```

1622
## buffer.readUIntBE
L
liu-ganlin 已提交
1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633

readUIntBE(offset: number, byteLength: number): number

从指定的`offset`处的buf读取`byteLength`个字节,并将结果解释为支持最高48位精度的无符号大端序整数。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1634 1635
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要读取的字节数。 |
L
liu-ganlin 已提交
1636 1637 1638 1639 1640 1641 1642 1643


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
1644 1645
**错误码:**

1646
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1647

L
liu-ganlin 已提交
1648
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1649 1650 1651
| -------- | -------- |
| 10200001 | The value of "[offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
1652 1653 1654 1655 1656 1657 1658
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]);
console.log(buf.readUIntBE(0, 6).toString(16));
L
lengchangjing 已提交
1659 1660 1661

let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeUIntBE(0x13141516, 0, 4);
L
liu-ganlin 已提交
1662 1663
```

1664
## buffer.readUIntLE
L
liu-ganlin 已提交
1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675

readUIntLE(offset: number, byteLength: number): number

从指定的`offset`处的buf读取`byteLength`个字节,并将结果解释为支持最高48位精度的无符号小端序整数。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1676 1677
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要读取的字节数。 |
L
liu-ganlin 已提交
1678 1679 1680 1681 1682 1683 1684 1685


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 读取出的内容。 |

L
lengchangjing 已提交
1686 1687
**错误码:**

1688
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1689

L
liu-ganlin 已提交
1690
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1691 1692 1693
| -------- | -------- |
| 10200001 | The value of "[offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
1694 1695 1696 1697 1698 1699 1700
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]);
console.log(buf.readUIntLE(0, 6).toString(16));
L
lengchangjing 已提交
1701 1702 1703

let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeUIntLE(0x13141516, 0, 4);
L
liu-ganlin 已提交
1704 1705
```

1706
## buffer.subarray
L
liu-ganlin 已提交
1707 1708 1709

subarray(start?: number, end?: number): Buffer

1710
截取当前对象指定位置的数据并返回。
L
liu-ganlin 已提交
1711 1712 1713 1714 1715 1716 1717 1718

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| start | number | 否 | 截取开始位置。 默认值: 0。 |
1719
| end | number | 否 |  截取结束位置(不包含结束位置)。 默认值: 当前对象的字节长度。 |
L
liu-ganlin 已提交
1720 1721 1722 1723 1724

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
1725
| Buffer | 返回新的Buffer对象。 |
L
liu-ganlin 已提交
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf1 = buffer.allocUninitializedFromPool(26);

for (let i = 0; i < 26; i++) {
  buf1[i] = i + 97;
}
const buf2 = buf1.subarray(0, 3);
console.log(buf2.toString('ascii', 0, buf2.length));
// 打印: abc
```

1742
## buffer.swap16
L
liu-ganlin 已提交
1743 1744 1745

swap16(): Buffer

1746
将当前对象解释为无符号的16位整数数组,并交换字节顺序。
L
liu-ganlin 已提交
1747 1748 1749 1750 1751 1752 1753 1754 1755 1756

**系统能力:** SystemCapability.Utils.Lang


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Buffer | 交换之后的Buffer实例。 |

L
lengchangjing 已提交
1757 1758
**错误码:**

1759
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1760

L
liu-ganlin 已提交
1761
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1762 1763 1764
| -------- | -------- |
| 10200009 | Buffer size must be a multiple of 16-bits |

L
liu-ganlin 已提交
1765 1766 1767 1768 1769 1770
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf1 = buffer.from([0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8]);
L
liu-ganlin 已提交
1771
console.log(buf1.toString('hex'));	// 打印: 0102030405060708
L
liu-ganlin 已提交
1772 1773

buf1.swap16();
L
liu-ganlin 已提交
1774
console.log(buf1.toString('hex'));	// 打印: 0201040306050807
L
liu-ganlin 已提交
1775 1776
```

1777
## buffer.swap32
L
liu-ganlin 已提交
1778 1779 1780

swap32(): Buffer

1781
将当前对象解释为无符号的32位整数数组,并交换字节顺序。
L
liu-ganlin 已提交
1782 1783 1784 1785 1786 1787 1788 1789

**系统能力:** SystemCapability.Utils.Lang


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
1790
| Buffer | 交换之后的Buffer对象。 |
L
liu-ganlin 已提交
1791

L
lengchangjing 已提交
1792 1793
**错误码:**

1794
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1795

L
liu-ganlin 已提交
1796
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1797 1798 1799
| -------- | -------- |
| 10200009 | Buffer size must be a multiple of 32-bits |

L
liu-ganlin 已提交
1800 1801 1802 1803 1804 1805
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf1 = buffer.from([0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8]);
L
liu-ganlin 已提交
1806
console.log(buf1.toString('hex'));	// 打印: 0102030405060708
L
liu-ganlin 已提交
1807 1808

buf1.swap32();
L
liu-ganlin 已提交
1809
console.log(buf1.toString('hex'));	// 打印: 0403020108070605
L
liu-ganlin 已提交
1810 1811
```

1812
## buffer.swap64
L
liu-ganlin 已提交
1813 1814 1815

swap64(): Buffer

1816
将当前对象解释为无符号的64位整数数组,并交换字节顺序。
L
liu-ganlin 已提交
1817 1818 1819 1820 1821 1822 1823 1824

**系统能力:** SystemCapability.Utils.Lang


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
1825
| Buffer | 交换之后的Buffer对象。 |
L
liu-ganlin 已提交
1826

L
lengchangjing 已提交
1827 1828
**错误码:**

1829
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1830

L
liu-ganlin 已提交
1831
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1832 1833 1834
| -------- | -------- |
| 10200009 | Buffer size must be a multiple of 64-bits |

L
liu-ganlin 已提交
1835 1836 1837 1838 1839 1840
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf1 = buffer.from([0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8]);
L
liu-ganlin 已提交
1841
console.log(buf1.toString('hex'));	// 打印: 0102030405060708
L
liu-ganlin 已提交
1842
buf1.swap64();
L
liu-ganlin 已提交
1843
console.log(buf1.toString('hex'));	// 打印: 0807060504030201
L
liu-ganlin 已提交
1844 1845
```

1846
## buffer.toJSON
L
liu-ganlin 已提交
1847 1848 1849

toJSON(): Object

1850
将Buffer转为JSON并返回。
L
liu-ganlin 已提交
1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866

**系统能力:** SystemCapability.Utils.Lang


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Object | JSON对象。 |

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf1 = buffer.from([0x1, 0x2, 0x3, 0x4, 0x5]);
L
liu-ganlin 已提交
1867 1868
let obj = buf1.toJSON();
console.log(JSON.stringify(obj))
L
liu-ganlin 已提交
1869 1870 1871
// 打印: {"type":"Buffer","data":[1,2,3,4,5]}
```

1872
## buffer.toString
L
liu-ganlin 已提交
1873 1874 1875

toString(encoding?: string, start?: number, end?: number): string

1876
将当前对象中指定位置数据转成指定编码格式字符串并返回。
L
liu-ganlin 已提交
1877 1878 1879 1880 1881 1882 1883 1884 1885

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| encoding | string | 否 | 字符编码格式。 默认值: 'utf-8'。 |
| start  | number | 否 |  开始位置。 默认值: 0。 |
1886
| end  | number | 否 |  结束位置。 默认值: Buffer.length。 |
L
liu-ganlin 已提交
1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| string | 字符串。 |

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf1 = buffer.allocUninitializedFromPool(26);
for (let i = 0; i < 26; i++) {
  buf1[i] = i + 97;
}
console.log(buf1.toString('utf-8'));
// 打印: abcdefghijklmnopqrstuvwxyz
```

1907
## buffer.values
L
liu-ganlin 已提交
1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926

values(): IterableIterator&lt;number&gt;

返回一个包含value的迭代器。

**系统能力:** SystemCapability.Utils.Lang

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| IterableIterator&lt;number&gt; | 迭代器。 |

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf1 = buffer.from('buffer');
L
liu-ganlin 已提交
1927 1928
for (let value of buf1.values()) {
  console.log(value.toString());
L
liu-ganlin 已提交
1929 1930 1931
}
```

1932
## buffer.write
L
liu-ganlin 已提交
1933

L
liu-ganlin 已提交
1934
write(str: string, offset?: number, length?: number, encoding?: string): number
L
liu-ganlin 已提交
1935

1936
从Buffer对象的offset偏移写入指定编码的字符串str,写入的字节长度为length。
L
liu-ganlin 已提交
1937 1938 1939 1940 1941 1942 1943 1944 1945

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| str | string | 是 | 要写入Buffer的字符串。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |
1946
| length | number | 否 | 最大字节长度。 默认值: (Buffer.length - offset)。|
L
liu-ganlin 已提交
1947
| encoding | string | 否 | 字符编码。 默认值: 'utf-8'。 |
L
liu-ganlin 已提交
1948 1949 1950 1951 1952 1953 1954 1955


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 返回写入的字节数。 |

L
lengchangjing 已提交
1956 1957
**错误码:**

1958
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
1959

L
liu-ganlin 已提交
1960
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1961 1962 1963
| -------- | -------- |
| 10200001 | The value of "[offset/length]" is out of range. |

L
liu-ganlin 已提交
1964 1965 1966 1967 1968 1969 1970
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.alloc(256);
let len = buf.write('\u00bd + \u00bc = \u00be', 0);
L
liu-ganlin 已提交
1971
console.log(`${len} bytes: ${buf.toString('utf-8', 0, len)}`);
L
liu-ganlin 已提交
1972 1973
// 打印: 12 bytes: ½ + ¼ = ¾

L
liu-ganlin 已提交
1974 1975
let buffer1 = buffer.alloc(10);
let length = buffer1.write('abcd', 8);
L
liu-ganlin 已提交
1976 1977
```

1978
## buffer.writeBigInt64BE
L
liu-ganlin 已提交
1979

L
liu-ganlin 已提交
1980
writeBigInt64BE(value: bigint, offset?: number): number
L
liu-ganlin 已提交
1981

1982
从Buffer对象的offset偏移写入有符号的大端序64位BigInt型数据value。
L
liu-ganlin 已提交
1983 1984 1985 1986 1987 1988 1989

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
1990
| value | bigint | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
1991 1992 1993 1994 1995 1996 1997 1998 1999
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2000 2001
**错误码:**

2002
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2003

L
liu-ganlin 已提交
2004
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2005 2006 2007
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2008 2009 2010 2011 2012 2013 2014 2015 2016
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(8);
buf.writeBigInt64BE(0x0102030405060708n, 0);
```

2017
## buffer.writeBigInt64LE
L
liu-ganlin 已提交
2018

L
liu-ganlin 已提交
2019
writeBigInt64LE(value: bigint, offset?: number): number
L
liu-ganlin 已提交
2020

2021
从Buffer对象的offset偏移写入有符号的小端序64位BigInt型数据value。
L
liu-ganlin 已提交
2022 2023 2024 2025 2026 2027 2028

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2029
| value | bigint | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2030 2031 2032 2033 2034 2035 2036 2037 2038
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2039 2040
**错误码:**

2041
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2042

L
liu-ganlin 已提交
2043
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2044 2045 2046
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2047 2048 2049 2050 2051 2052 2053 2054 2055
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(8);
buf.writeBigInt64LE(0x0102030405060708n, 0);
```

2056
## buffer.writeBigUInt64BE
L
liu-ganlin 已提交
2057

L
liu-ganlin 已提交
2058
writeBigUInt64BE(value: bigint, offset?: number): number
L
liu-ganlin 已提交
2059

2060
从Buffer对象的offset偏移写入无符号的大端序64位BigUInt型数据value。
L
liu-ganlin 已提交
2061 2062 2063 2064 2065 2066 2067

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2068
| value | bigint | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2069 2070 2071 2072 2073 2074 2075 2076 2077
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2078 2079
**错误码:**

2080
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2081

L
liu-ganlin 已提交
2082
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2083 2084 2085
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2086 2087 2088 2089 2090 2091 2092 2093 2094
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(8);
buf.writeBigUInt64BE(0xdecafafecacefaden, 0);
```

2095
## buffer.writeBigUInt64LE
L
liu-ganlin 已提交
2096

L
liu-ganlin 已提交
2097
writeBigUInt64LE(value: bigint, offset?: number): number
L
liu-ganlin 已提交
2098

2099
从Buffer对象的offset偏移写入无符号的小端序64位BigUInt型数据value。
L
liu-ganlin 已提交
2100 2101 2102 2103 2104 2105 2106

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2107
| value | bigint | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2108 2109 2110 2111 2112 2113 2114 2115 2116
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2117 2118
**错误码:**

2119
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2120

L
liu-ganlin 已提交
2121
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2122 2123 2124
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2125 2126 2127 2128 2129 2130 2131 2132 2133
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(8);
buf.writeBigUInt64LE(0xdecafafecacefaden, 0);
```

2134
## buffer.writeDoubleBE
L
liu-ganlin 已提交
2135

L
liu-ganlin 已提交
2136
writeDoubleBE(value: number, offset?: number): number
L
liu-ganlin 已提交
2137

2138
从Buffer对象的offset偏移写入大端序的64位双浮点型数据value。
L
liu-ganlin 已提交
2139 2140 2141 2142 2143 2144 2145

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2146
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2147 2148 2149 2150 2151 2152 2153 2154 2155
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2156 2157
**错误码:**

2158
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2159

L
liu-ganlin 已提交
2160
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2161 2162 2163
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2164 2165 2166 2167 2168 2169 2170 2171 2172
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(8);
buf.writeDoubleBE(123.456, 0);
```

2173
## buffer.writeDoubleLE
L
liu-ganlin 已提交
2174

L
liu-ganlin 已提交
2175
writeDoubleLE(value: number, offset?: number): number
L
liu-ganlin 已提交
2176

2177
从Buffer对象的offset偏移写入小端序的64位双浮点型数据value。
L
liu-ganlin 已提交
2178 2179 2180 2181 2182 2183 2184

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2185
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2186 2187 2188 2189 2190 2191 2192 2193 2194
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2195 2196
**错误码:**

2197
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2198

L
liu-ganlin 已提交
2199
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2200 2201 2202
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2203 2204 2205 2206 2207 2208 2209 2210 2211
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(8);
buf.writeDoubleLE(123.456, 0);
```

2212
## buffer.writeFloatBE
L
liu-ganlin 已提交
2213

L
liu-ganlin 已提交
2214
writeFloatBE(value: number, offset?: number): number
L
liu-ganlin 已提交
2215

2216
从Buffer对象的offset偏移写入大端序的32位浮点型数据value。
L
liu-ganlin 已提交
2217 2218 2219 2220 2221 2222 2223

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2224
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2225 2226 2227 2228 2229 2230 2231 2232 2233
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2234 2235
**错误码:**

2236
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2237

L
liu-ganlin 已提交
2238
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2239 2240 2241
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2242 2243 2244 2245 2246 2247 2248 2249 2250 2251
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(8);
buf.writeFloatBE(0xcafebabe, 0);
```


2252
## buffer.writeFloatLE
L
liu-ganlin 已提交
2253

L
liu-ganlin 已提交
2254
writeFloatLE(value: number, offset?: number): number
L
liu-ganlin 已提交
2255

2256
从Buffer对象的offset偏移写入小端序的32位浮点型数据value。
L
liu-ganlin 已提交
2257 2258 2259 2260 2261 2262 2263

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2264
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2265 2266 2267 2268 2269 2270 2271 2272 2273
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2274 2275
**错误码:**

2276
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2277

L
liu-ganlin 已提交
2278
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2279 2280 2281
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2282 2283 2284 2285 2286 2287 2288 2289 2290
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(8);
buf.writeFloatLE(0xcafebabe, 0);
```

2291
## buffer.writeInt8
L
liu-ganlin 已提交
2292

L
liu-ganlin 已提交
2293
writeInt8(value: number, offset?: number): number
L
liu-ganlin 已提交
2294

2295
从Buffer对象的offset偏移写入8位有符号整型数据value。
L
liu-ganlin 已提交
2296 2297 2298 2299 2300 2301 2302

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2303
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2304 2305 2306 2307 2308 2309 2310 2311 2312
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2313 2314
**错误码:**

2315
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2316

L
liu-ganlin 已提交
2317
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2318 2319 2320
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(2);
buf.writeInt8(2, 0);
buf.writeInt8(-2, 1);
```


2332
## buffer.writeInt16BE
L
liu-ganlin 已提交
2333

L
liu-ganlin 已提交
2334
writeInt16BE(value: number, offset?: number): number
L
liu-ganlin 已提交
2335

2336
从Buffer对象的offset偏移写入大端序的16位有符号整型数据value。
L
liu-ganlin 已提交
2337 2338 2339 2340 2341 2342 2343

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2344
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2345 2346 2347 2348 2349 2350 2351 2352 2353
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2354 2355
**错误码:**

2356
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2357

L
liu-ganlin 已提交
2358
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2359 2360 2361
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2362 2363 2364 2365 2366 2367 2368 2369 2370 2371
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(2);
buf.writeInt16BE(0x0102, 0);
```


2372
## buffer.writeInt16LE
L
liu-ganlin 已提交
2373

L
liu-ganlin 已提交
2374
writeInt16LE(value: number, offset?: number): number
L
liu-ganlin 已提交
2375

2376
从Buffer对象的offset偏移写入小端序的16位有符号整型数据value。
L
liu-ganlin 已提交
2377 2378 2379 2380 2381 2382 2383

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2384
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2385 2386 2387 2388 2389 2390 2391 2392 2393
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2394 2395
**错误码:**

2396
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2397

L
liu-ganlin 已提交
2398
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2399 2400 2401
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2402 2403 2404 2405 2406 2407 2408 2409 2410
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(2);
buf.writeInt16LE(0x0304, 0);
```

2411
## buffer.writeInt32BE
L
liu-ganlin 已提交
2412

L
liu-ganlin 已提交
2413
writeInt32BE(value: number, offset?: number): number
L
liu-ganlin 已提交
2414

2415
从Buffer对象的offset偏移写入大端序的32位有符号整型数据value。
L
liu-ganlin 已提交
2416 2417 2418 2419 2420 2421 2422

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2423
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2424 2425 2426 2427 2428 2429 2430 2431 2432
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2433 2434
**错误码:**

2435
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2436

L
liu-ganlin 已提交
2437
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2438 2439 2440
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2441 2442 2443 2444 2445 2446 2447 2448 2449 2450
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(4);
buf.writeInt32BE(0x01020304, 0);
```


2451
## buffer.writeInt32LE
L
liu-ganlin 已提交
2452

L
liu-ganlin 已提交
2453
writeInt32LE(value: number, offset?: number): number
L
liu-ganlin 已提交
2454

2455
从Buffer对象的offset偏移写入小端序的32位有符号整型数据value。
L
liu-ganlin 已提交
2456 2457 2458 2459 2460 2461 2462

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2463
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2464 2465 2466 2467 2468 2469 2470 2471 2472
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2473 2474
**错误码:**

2475
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2476

L
liu-ganlin 已提交
2477
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2478 2479 2480
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2481 2482 2483 2484 2485 2486 2487 2488 2489
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(4);
buf.writeInt32LE(0x05060708, 0);
```

2490
## buffer.writeIntBE
L
liu-ganlin 已提交
2491

L
liu-ganlin 已提交
2492
writeIntBE(value: number, offset: number, byteLength: number): number
L
liu-ganlin 已提交
2493

2494
从Buffer对象的offset偏移写入大端序的有符号value数据,value字节长度为byteLength。
L
liu-ganlin 已提交
2495 2496 2497 2498 2499 2500 2501

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2502
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2503 2504
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要写入的字节数。 |
L
liu-ganlin 已提交
2505 2506 2507 2508 2509 2510 2511 2512


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2513 2514
**错误码:**

2515
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2516

L
liu-ganlin 已提交
2517
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2518 2519 2520
| -------- | -------- |
| 10200001 | The value of "[value/offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
2521 2522 2523 2524 2525 2526 2527 2528 2529 2530
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(6);
buf.writeIntBE(0x1234567890ab, 0, 6);
```


2531
## buffer.writeIntLE
L
liu-ganlin 已提交
2532

L
liu-ganlin 已提交
2533
writeIntLE(value: number, offset: number, byteLength: number): number
L
liu-ganlin 已提交
2534

2535
从Buffer对象的offset偏移写入小端序的有符号value数据,value字节长度为byteLength。
L
liu-ganlin 已提交
2536 2537 2538 2539 2540 2541 2542

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2543
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2544 2545
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要写入的字节数。 |
L
liu-ganlin 已提交
2546 2547 2548 2549 2550 2551 2552 2553


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2554 2555
**错误码:**

2556
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2557

L
liu-ganlin 已提交
2558
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2559 2560 2561
| -------- | -------- |
| 10200001 | The value of "[value/offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
2562 2563 2564 2565 2566 2567 2568 2569 2570
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(6);
buf.writeIntLE(0x1234567890ab, 0, 6);
```

2571
## buffer.writeUInt8
L
liu-ganlin 已提交
2572

L
liu-ganlin 已提交
2573
writeUInt8(value: number, offset?: number): number
L
liu-ganlin 已提交
2574

2575
从Buffer对象的offset偏移写入8位无符号整型数据value。
L
liu-ganlin 已提交
2576 2577 2578 2579 2580 2581 2582

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2583
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2584 2585 2586 2587 2588 2589 2590 2591 2592
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2593 2594
**错误码:**

2595
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2596

L
liu-ganlin 已提交
2597
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2598 2599 2600
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(4);
buf.writeUInt8(0x3, 0);
buf.writeUInt8(0x4, 1);
buf.writeUInt8(0x23, 2);
buf.writeUInt8(0x42, 3);
```

2613
## buffer.writeUInt16BE
L
liu-ganlin 已提交
2614

L
liu-ganlin 已提交
2615
writeUInt16BE(value: number, offset?: number): number
L
liu-ganlin 已提交
2616

2617
从Buffer对象的offset偏移写入大端序的16位无符号整型数据value。
L
liu-ganlin 已提交
2618 2619 2620 2621 2622 2623 2624

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2625
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2626 2627 2628 2629 2630 2631 2632 2633 2634
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2635 2636
**错误码:**

2637
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2638

L
liu-ganlin 已提交
2639
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2640 2641 2642
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2643 2644 2645 2646 2647 2648 2649 2650 2651 2652
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(4);
buf.writeUInt16BE(0xdead, 0);
buf.writeUInt16BE(0xbeef, 2);
```

2653
## buffer.writeUInt16LE
L
liu-ganlin 已提交
2654

L
liu-ganlin 已提交
2655
writeUInt16LE(value: number, offset?: number): number
L
liu-ganlin 已提交
2656

2657
从Buffer对象的offset偏移写入小端序的16位无符号整型数据value。
L
liu-ganlin 已提交
2658 2659 2660 2661 2662 2663 2664

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2665
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2666 2667 2668 2669 2670 2671 2672 2673 2674
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2675 2676
**错误码:**

2677
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2678

L
liu-ganlin 已提交
2679
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2680 2681 2682
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2683 2684 2685 2686 2687 2688 2689 2690 2691 2692
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(4);
buf.writeUInt16LE(0xdead, 0);
buf.writeUInt16LE(0xbeef, 2);
```

2693
## buffer.writeUInt32BE
L
liu-ganlin 已提交
2694

L
liu-ganlin 已提交
2695
writeUInt32BE(value: number, offset?: number): number
L
liu-ganlin 已提交
2696

2697
从Buffer对象的offset偏移写入大端序的32位无符号整型数据value。
L
liu-ganlin 已提交
2698 2699 2700 2701 2702 2703 2704

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2705
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2706 2707 2708 2709 2710 2711 2712 2713 2714
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2715 2716
**错误码:**

2717
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2718

L
liu-ganlin 已提交
2719
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2720 2721 2722
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2723 2724 2725 2726 2727 2728 2729 2730 2731
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(4);
buf.writeUInt32BE(0xfeedface, 0);
```

2732
## buffer.writeUInt32LE
L
liu-ganlin 已提交
2733

L
liu-ganlin 已提交
2734
writeUInt32LE(value: number, offset?: number): number
L
liu-ganlin 已提交
2735

2736
从Buffer对象的offset偏移写入小端序的32位无符号整型数据value。
L
liu-ganlin 已提交
2737 2738 2739 2740 2741 2742 2743

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2744
| value | number | 是 | 写入Buffer对象的数字。 |
L
liu-ganlin 已提交
2745 2746 2747 2748 2749 2750 2751 2752 2753
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2754 2755
**错误码:**

2756
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2757

L
liu-ganlin 已提交
2758
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2759 2760 2761
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2762 2763 2764 2765 2766 2767 2768 2769 2770
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(4);
buf.writeUInt32LE(0xfeedface, 0);
```

2771
## buffer.writeUIntBE
L
liu-ganlin 已提交
2772

L
liu-ganlin 已提交
2773
writeUIntBE(value: number, offset: number, byteLength: number): number
L
liu-ganlin 已提交
2774

2775
从Buffer对象的offset偏移写入大端序的无符号value数据,value字节长度为byteLength。
L
liu-ganlin 已提交
2776 2777 2778 2779 2780 2781 2782

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2783
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2784 2785
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要写入的字节数。 |
L
liu-ganlin 已提交
2786 2787 2788 2789 2790 2791 2792 2793


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2794 2795
**错误码:**

2796
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2797

L
liu-ganlin 已提交
2798
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2799 2800 2801
| -------- | -------- |
| 10200001 | The value of "[value/offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
2802 2803 2804 2805 2806 2807 2808 2809 2810
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(6);
buf.writeUIntBE(0x1234567890ab, 0, 6);
```

2811
## buffer.writeUIntLE
L
liu-ganlin 已提交
2812

L
liu-ganlin 已提交
2813
writeUIntLE(value: number, offset: number, byteLength: number): number
L
liu-ganlin 已提交
2814

2815
从Buffer对象的offset偏移写入小端序的无符号value数据,value字节长度为byteLength。
L
liu-ganlin 已提交
2816 2817 2818 2819 2820 2821 2822

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
2823
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2824 2825
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要写入的字节数。 |
L
liu-ganlin 已提交
2826 2827 2828 2829 2830 2831 2832 2833


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 写入的字节数。 |

L
lengchangjing 已提交
2834 2835
**错误码:**

2836
以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.md)
L
lengchangjing 已提交
2837

L
liu-ganlin 已提交
2838
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2839 2840 2841
| -------- | -------- |
| 10200001 | The value of "[value/offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
2842 2843 2844 2845 2846 2847 2848 2849 2850
**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.allocUninitializedFromPool(6);
buf.writeUIntLE(0x1234567890ab, 0, 6);
```

2851
## buffer.transcode
L
liu-ganlin 已提交
2852

L
liu-ganlin 已提交
2853
transcode(source: Buffer | Uint8Array, fromEnc: string, toEnc: string): Buffer
L
liu-ganlin 已提交
2854

2855
将给定的Buffer或Uint8Array对象从一种字符编码重新编码为另一种。
L
liu-ganlin 已提交
2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| source | Buffer&nbsp;\|&nbsp;Uint8Array | 是 | 实例对象。 |
| fromEnc | string | 是 | 当前编码。 |
| toEnc | string | 是 | 目标编码。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Buffer | 根据当前编码转换成目标编码,并返回一个新的buffer实例。 |

**示例:**

```ts
import buffer from '@ohos.buffer';

let buf = buffer.alloc(50);
L
liu-ganlin 已提交
2879
let newBuf = buffer.transcode(buffer.from(''), 'utf-8', 'ascii');
L
liu-ganlin 已提交
2880 2881 2882 2883 2884 2885 2886 2887 2888
console.log(newBuf.toString('ascii'));
```

## Blob

### 属性

**系统能力:** SystemCapability.Utils.Lang

L
liu-ganlin 已提交
2889
| 名称 | 类型 | 可读 | 可写 | 说明 |
L
liu-ganlin 已提交
2890 2891 2892 2893 2894 2895
| -------- | -------- | -------- | -------- | -------- |
| size | number | 是 | 否 | Blob实例的总字节大小。 |
| type | string | 是 | 否 | Blob实例的内容类型。 |

### constructor

L
liu-ganlin 已提交
2896
constructor(sources: string[] | ArrayBuffer[] | TypedArray[] | DataView[] | Blob[] , options?: Object)
L
liu-ganlin 已提交
2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910

Blob的构造函数。

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| sources | string[]&nbsp;\|&nbsp;ArrayBuffer[]&nbsp;\|&nbsp;TypedArray[]&nbsp;\|&nbsp;DataView[]&nbsp;\|&nbsp;Blob[] | 是 | Blob实例的数据源。 |
| options | Object | 否 | options:<br/>-&nbsp;endings:'transparent'或'native'<br/>-&nbsp;type:Blob内容类型 |


**示例:**
2911 2912
```ts
import buffer from '@ohos.buffer';
L
lengchangjing 已提交
2913

2914 2915 2916
let blob = new buffer.Blob(['a', 'b', 'c']);
let blob1 = new buffer.Blob(['a', 'b', 'c'], {endings:'native', type: 'MIME'});
```
L
liu-ganlin 已提交
2917

L
liu-ganlin 已提交
2918
### arrayBuffer
L
liu-ganlin 已提交
2919 2920 2921 2922 2923 2924 2925 2926 2927 2928

arrayBuffer(): Promise&lt;ArrayBuffer&gt;

将Blob中的数据放入到ArrayBuffer中,并返回一个Promise。

**系统能力:** SystemCapability.Utils.Lang

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
2929
| Promise&lt;ArrayBuffer&gt; | Promise对象,返回包含Blob数据的ArrayBuffer。 |
L
liu-ganlin 已提交
2930 2931

**示例:**
2932 2933 2934 2935 2936 2937 2938 2939
```ts
let blob = new buffer.Blob(['a', 'b', 'c']);
let pro = blob.arrayBuffer();
pro.then(val => {
  let uintarr = new Uint8Array(val);
  console.log(uintarr.toString());
});
```
L
liu-ganlin 已提交
2940 2941 2942 2943
### slice

slice(start?: number, end?: number, type?: string): Blob

2944
创建并返回一个复制原Blob对象中指定数据长度的Blob新对象。
L
liu-ganlin 已提交
2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961

**系统能力:** SystemCapability.Utils.Lang

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| start | number | 否 | 起始位置。 |
| end | number | 否 | 结束位置。 |
| type | string | 否 | 内容类型。 |

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
| Blob | 新的Blob实例对象。 |

**示例:**
2962 2963 2964 2965 2966
```ts
let blob = new buffer.Blob(['a', 'b', 'c']);
let blob2 = blob.slice(0, 2);
let blob3 = blob.slice(0, 2, "MIME");
```
L
liu-ganlin 已提交
2967

L
lengchangjing 已提交
2968
### text
L
liu-ganlin 已提交
2969 2970 2971

text(): Promise&lt;string&gt;

2972
使用UTF8进行解码并返回一个文本。使用Promise异步回调。
L
liu-ganlin 已提交
2973 2974 2975 2976 2977 2978

**系统能力:** SystemCapability.Utils.Lang

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
2979
| Promise&lt;string&gt; | Promise对象,返回包含以UTF8解码的文本。 |
L
liu-ganlin 已提交
2980 2981

**示例:**
2982 2983 2984 2985 2986 2987 2988
```ts
let blob = new buffer.Blob(['a', 'b', 'c']);
let pro = blob.text();
pro.then(val => {
    console.log(val)
});
```