js-apis-buffer.md 80.7 KB
Newer Older
L
liu-ganlin 已提交
1 2 3 4 5 6 7
# Buffer

> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

Buffer对象用于表示固定长度的字节序列,是专门存放二进制数据的缓存区。

L
lengchangjing 已提交
8
**推荐使用场景:** 可用于处理大量二进制数据,处理图片、文件接收上传等等
L
liu-ganlin 已提交
9 10 11 12 13 14 15 16 17

## 导入模块

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

## Buffer

L
lengchangjing 已提交
18 19 20 21 22 23 24 25 26 27
### 属性

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

| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
| length | number | 是 | 否 | buffer的字节长度。 |
| buffer | ArrayBuffer | 是 | 否 | ArrayBuffer对象。 |
| byteOffset | number | 是 | 否 | 当前buffer所在内存池的偏移量。 |

L
lengchangjing 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200013 | Cannot set property ${propertyName} of Buffer which has only a getter. |

**示例:**

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

let buf = buffer.from("1236");
try {
  buf.length = 10;
} catch (err) {
  console.log("set length exception: " + JSON.stringify(err));
}

let buf1 = buffer.from("123");
try {
  buf.buffer = buf1;
} catch (err) {
  console.log("set buffer exception: " + JSON.stringify(err));
}

try {
  buf.byteOffset = 3;
} catch (err) {
  console.log("set byteOffset exception: " + JSON.stringify(err));
}
```

L
liu-ganlin 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
### alloc

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

创建`size`个字节长度的Buffer实例,并初始化。

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| size | number | 是 | 指定的Buffer实例长度,单位:字节。 |
| fill | string \| Buffer \| number | 否 | 预填充的值,默认值: 0 |
| encoding | BufferEncoding | 否 | 编码方式(当`fill`为string时,才有意义)。 默认值: 'utf-8' |

**返回值:**

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

**示例:**

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

let buf1 = buffer.alloc(5);
let buf2 = buffer.alloc(5, 'a');
let buf3 = buffer.alloc(11, 'aGVsbG8gd29ybGQ=', 'base64');
L
lengchangjing 已提交
92 93 94 95 96 97

try {
  let buf = buffer.alloc(-5);
} catch (err) {
  console.log("alloc exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
```

### allocUninitializedFromPool

allocUninitializedFromPool(size: number): Buffer

创建指定大小的未被初始化Buffer实例。内存从缓冲池分配。
创建的Buffer的内容未知,需要使用fill()函数来初始化Buffer实例。

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| size | number | 是 | 指定的Buffer实例长度,单位:字节。 |

**返回值:**

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

**示例:**

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

let buf = buffer.allocUninitializedFromPool(10);
buf.fill(0);
L
lengchangjing 已提交
128 129 130 131 132 133

try {
  let buf = buffer.allocUninitializedFromPool(-5);
} catch (err) {
  console.log("allocUninitializedFromPool exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
```

### allocUninitialized

allocUninitialized(size: number): Buffer

创建指定大小的未被初始化Buffer实例。内存不从缓冲池分配。

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| size | number | 是 |指定的Buffer实例长度,单位:字节。 |

**返回值:**

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

**示例:**

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

let buf = buffer.allocUninitialized(10);
buf.fill(0);
L
lengchangjing 已提交
163 164 165 166 167 168

try {
  let buf = buffer.allocUninitialized(-5);
} catch (err) {
  console.log("allocUninitialized exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
169 170 171 172
```

### byteLength

L
liu-ganlin 已提交
173
byteLength(string: string | Buffer | TypedArray | DataView | ArrayBuffer | SharedArrayBuffer, encoding?: BufferEncoding): number
L
liu-ganlin 已提交
174 175 176 177 178 179 180 181 182

根据不同的编码方法,返回字符串的字节数。

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
183
| string | string \| Buffer \| TypedArray \| DataView \| ArrayBuffer \| SharedArrayBuffer | 是 | 指定字符串。 |
L
liu-ganlin 已提交
184 185 186 187 188 189 190 191 192 193 194 195 196 197
| encoding | BufferEncoding | 否 | 编码方式。 默认值: 'utf-8' |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| number | 返回字符串的字节数 |

**示例:**

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

let str = '\u00bd + \u00bc = \u00be';
L
liu-ganlin 已提交
198
console.log(`${str}: ${str.length} characters, ${buffer.byteLength(str, 'utf-8')} bytes`);
L
liu-ganlin 已提交
199
// 打印: ½ + ¼ = ¾: 9 characters, 12 bytes
L
lengchangjing 已提交
200 201 202 203 204 205

try {
  let byteLen = buffer.byteLength(10);
} catch (err) {
  console.log("byteLength exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
206 207 208 209
```

### compare

L
liu-ganlin 已提交
210
compare(buf1: Buffer | Uint8Array, buf2: Buffer | Uint8Array): -1 | 0 | 1
L
liu-ganlin 已提交
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227

返回比较buf1和buf2的结果, 通常用于对Buffer实例的数组进行排序。


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

**参数:**

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

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
L
liu-ganlin 已提交
228
| -1&nbsp;\|&nbsp;0&nbsp;\|&nbsp;1 | 如果buf1与buf2相同,则返回0<br/>如果排序时buf1位于buf2之后,则返回1<br/>如果排序时buf1位于buf2之前,则返回-1。 |
L
liu-ganlin 已提交
229 230 231 232 233 234 235 236

**示例:**

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

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

L
liu-ganlin 已提交
239
console.log(Number(res).toString());
L
liu-ganlin 已提交
240
// 打印 1
L
lengchangjing 已提交
241 242 243 244 245 246

try {
  let res = buffer.compare(10, buf2);
} catch (err) {
  console.log("compare exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
```

### concat

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

`list`中的实例内容复制`totalLength`字节长度到新的Buffer实例中并返回。

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| list | Buffer[]&nbsp;\|&nbsp;Uint8Array[] | 是 | 实例数组。 |
| totalLength | number | 否 | 需要融合的总字节长度。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Buffer | 返回新Buffer的实例。 |

L
lengchangjing 已提交
270 271 272 273 274 275 276 277
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "totalLength" is out of range. |

L
liu-ganlin 已提交
278 279 280 281 282 283 284 285
**示例:**

```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 已提交
286
console.log(buf.toString('hex')); // 3132333461626364
L
lengchangjing 已提交
287 288 289 290 291 292 293 294 295 296 297 298

try {
  buf = buffer.concat("test string");
} catch (err) {
  console.log("concat exception: " + JSON.stringify(err));
}

try {
  buf = buffer.concat([buf1, buf2], -1);
} catch (err) {
  console.log("concat exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
299 300 301 302
```

### from

L
liu-ganlin 已提交
303
from(array: number[]): Buffer;
L
liu-ganlin 已提交
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326

根据指定数组创建新的Buffer实例。

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

**参数:**

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

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Buffer | 新的Buffer实例。 |

**示例:**

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

let buf = buffer.from([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]);
L
liu-ganlin 已提交
327
console.log(buf.toString('hex')); // 627566666572
L
lengchangjing 已提交
328 329 330 331 332 333

try {
  const buf = buffer.from(10);
} catch (err) {
  console.log("from exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
```

### from

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

创建指定长度的与`arrayBuffer`共享内存的Buffer实例

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| arrayBuffer | ArrayBuffer&nbsp;\|&nbsp;SharedArrayBuffer | 是 | 实例对象。 |
| byteOffset | number | 否 | 字节偏移量,默认值: 0。 |
| length | number | 否 | 字节长度, 默认值: arrayBuffer.byteLength - byteOffset。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Buffer | 返回一个共享内存的Buffer实例。 |

L
lengchangjing 已提交
358 359 360 361 362 363 364 365
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "[byteOffset/length]" is out of range. |

L
liu-ganlin 已提交
366 367 368 369 370 371 372
**示例:**

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

let ab = new ArrayBuffer(10);
let buf = buffer.from(ab, 0, 2);
L
lengchangjing 已提交
373

L
lengchangjing 已提交
374 375 376 377 378 379 380
let arrayBuffer = new ArrayBuffer(5);
let array = new Int8Array(arrayBuffer);
array[0] = '1';
array[1] = '2';
array[2] = '3';
array[3] = '4';
array[4] = '5';
L
lengchangjing 已提交
381 382 383 384 385
try {
  const buf = buffer.from(arrayBuffer, 6, 1);
} catch (err) {
  console.log("from exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
386 387 388 389
```

### from

L
liu-ganlin 已提交
390
from(buffer: Buffer | Uint8Array): Buffer
L
liu-ganlin 已提交
391

L
liu-ganlin 已提交
392
创建并复制`buffer`数据到新的Buffer实例并返回。
L
liu-ganlin 已提交
393 394 395 396 397 398 399

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
400
| buffer | Buffer&nbsp;\|&nbsp;Uint8Array | 是 | 实例数据。 |
L
liu-ganlin 已提交
401 402 403 404 405 406 407 408 409 410 411 412 413 414

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Buffer | 新的Buffer实例。 |

**示例:**

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

let buf1 = buffer.from('buffer');
let buf2 = buffer.from(buf1);
L
lengchangjing 已提交
415 416 417 418 419 420

try {
  const buf = buffer.from(10);
} catch (err) {
  console.log("from exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
421 422 423 424 425 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
```

### from

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

根据指定的`object`类型数据,创建新的Buffer实例。

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| object | Object | 是 | 支持Symbol.toPrimitive或valueOf()的对象 |
| offsetOrEncoding | number&nbsp;\|&nbsp;string | 否 | 字节偏移量或编码。 |
| length | number | 否 | 字节长度。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Buffer | 新的Buffer实例。 |

**示例:**

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

let buf = buffer.from(new String('this is a test'));
L
lengchangjing 已提交
451 452 453 454 455 456

try {
  const buf = buffer.from(10, 0, 1);
} catch (err) {
  console.log("from exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
457 458 459 460
```

### from

L
liu-ganlin 已提交
461
from(string: String, encoding?: BufferEncoding): Buffer
L
liu-ganlin 已提交
462 463 464 465 466 467 468 469 470

根据指定编码格式的字符串,创建新的Buffer实例。

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
471
| string | String | 是 | 字符串 |
L
liu-ganlin 已提交
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
| encoding | BufferEncoding | 否 | 编码格式。 默认值: 'utf-8'。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Buffer | 新的Buffer实例。 |

**示例:**

```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());
L
lengchangjing 已提交
490 491 492 493 494 495

try {
  const buf = buffer.from("test string", "utf9");
} catch (err) {
  console.log("from exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
```


### isBuffer

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
```

### isEncoding

isEncoding(encoding: string): boolean

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

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

**参数:**

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

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| boolean | true或者false。 |

**示例:**

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

L
liu-ganlin 已提交
556 557 558 559
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 已提交
560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
```

### compare

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

`this`实例对象与`target`实例对象进行比较,返回buf在排序中的顺序,-1:前排序,0:与buf相同,1:后排序。

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| target | Buffer&nbsp;\|&nbsp;Uint8Array | 是 | 要比较的实例对象。 |
| targetStart | number | 否 | `target`实例中开始的偏移量。 默认值: 0。 |
L
liu-ganlin 已提交
576
| targetEnd | number | 否 | `target`实例中结束的偏移量(不包括本身)。 默认值: target.length。 |
L
liu-ganlin 已提交
577 578 579
| sourceStart | number | 否 | `this`实例中开始的偏移量。 默认值: 0。 |
| sourceEnd | number | 否 | `this`实例中结束的偏移量(不包括本身)。 默认值: buf.length。 |

L
lengchangjing 已提交
580 581
**返回值:**

L
liu-ganlin 已提交
582 583 584 585 586 587 588 589 590 591 592 593
| 类型 | 说明 |
| -------- | -------- |
| number | 比较结果。-1:前排序,0:与buf相同,1:后排序。 |

**示例:**

```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 已提交
594 595 596
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
lengchangjing 已提交
597 598 599 600 601 602 603

let buf = buffer.from("1236");
try {
  let res = buf.compare(10);
} catch (err) {
  console.log("compare exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
```

### copy

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。 |
| sourceEnd | number | 否 | `this`实例中结束复制的偏移量(不包括)。 默认值: buf.length。 |

**返回值:**

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

L
lengchangjing 已提交
629 630 631 632 633 634 635 636
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
**示例:**

```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!!!!!!!!!!!!!
L
lengchangjing 已提交
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666

let buf3 = buffer.from("123656");
try {
  let num = buf3.copy(10);
} catch (err) {
  console.log("copy exception: " + JSON.stringify(err));
}

let buf4 = buffer.from("123656");
let buf5 = buffer.from("1235");
try {
  let num = buf4.copy(buf5, -1);
} catch (err) {
  console.log("copy exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
```

### entries

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

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

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

**示例:**

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

let buf = buffer.from('buffer');
for (let pair of buf.entries()) {
L
liu-ganlin 已提交
684
  console.log(pair.toString());
L
liu-ganlin 已提交
685 686 687 688 689
}
```

### equals

L
liu-ganlin 已提交
690
equals(otherBuffer: Uint8Array | Buffer): boolean
L
liu-ganlin 已提交
691 692 693 694 695 696 697 698 699

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
700
| otherBuffer | Uint8Array&nbsp;\|&nbsp;Buffer | 是 | 比较的目标对象。 |
L
liu-ganlin 已提交
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| 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 已提交
717 718
console.log(buf1.equals(buf2).toString());	// 打印: true
console.log(buf1.equals(buf3).toString());	// 打印: false
L
liu-ganlin 已提交
719

L
lengchangjing 已提交
720 721 722 723 724
try {
  let res = buf1.equals("1236");
} catch (err) {
  console.log("equals exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749
```

### fill

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

`value`填充`this`实例指定位置的数据,默认为循环填充,并返回填充后的Buffer实例。

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | string&nbsp;\|&nbsp;Buffer&nbsp;\|&nbsp;Uint8Array&nbsp;\|&nbsp;number | 是 | 用于填充的值。 |
| offset | number | 否 | 起始偏移量。 默认值: 0。 |
| end | number | 否 | 结束偏移量(不包括在内)。 默认值: buf.length。 |
| encoding | BufferEncoding | 否 | 字符编码格式(`value`为string才有意义)。 默认值: 'utf-8'。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Buffer | 填充后的Buffer实例。 |

L
lengchangjing 已提交
750 751 752 753 754 755 756 757
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "[offset/end]" is out of range. |

L
liu-ganlin 已提交
758 759 760 761 762 763 764
**示例:**

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

let b = buffer.allocUninitializedFromPool(50).fill('h');
console.log(b.toString());
L
lengchangjing 已提交
765 766 767 768 769 770

try {
  let buf = buffer.alloc(3).fill("$*$", -1);
} catch (err) {
  console.log("fill exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801
```


### includes

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。 |
| encoding | BufferEncoding | 否 | 字符编码格式。 默认值: 'utf-8'。 |

**返回值:**

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

**示例:**

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

let buf = buffer.from('this is a buffer');
L
liu-ganlin 已提交
802 803
console.log(buf.includes('this').toString());	// 打印: true
console.log(buf.includes('be').toString());	// 打印: false
L
lengchangjing 已提交
804 805 806 807 808 809 810

let buf1 = buffer.from("13236");
try {
  let flag = buf1.includes(true);
} catch (err) {
  console.log("includes exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840
```

### indexOf

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

查找`this`实例中第一次出现`value`的索引,如果不包含`value`,则为-1

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | string&nbsp;\|&nbsp;number&nbsp;\|&nbsp;Buffer&nbsp;\|&nbsp;Uint8Array | 是 | 要搜索的内容。 |
| byteOffset | number | 否 | 字节偏移量。 如果为负数,则从末尾开始计算偏移量。 默认值: 0。 |
| encoding | BufferEncoding | 否 | 字符编码格式。 默认值: 'utf-8'。 |

**返回值:**

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

**示例:**

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

let buf = buffer.from('this is a buffer');
L
liu-ganlin 已提交
841 842
console.log(buf.indexOf('this').toString());	// 打印: 0
console.log(buf.indexOf('is').toString());		// 打印: 2
L
lengchangjing 已提交
843 844 845 846 847 848 849 850 851 852 853 854 855

let buf1 = buffer.from("13236");
try {
  let index = buf1.indexOf(true);
} catch (err) {
  console.log("indexOf exception: " + JSON.stringify(err));
}

try {
  let index1 = buf1.indexOf("a", "utf9");
} catch (err) {
  console.log("indexOf exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878
```

### keys

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

返回一个包含key值的迭代器

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

**返回值:**

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

**示例:**

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

let buf = buffer.from('buffer');
for (const key of buf.keys()) {
L
liu-ganlin 已提交
879
  console.log(key.toString());
L
liu-ganlin 已提交
880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
}
```

### lastIndexOf

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。 |
| encoding | BufferEncoding | 否 | 字符编码格式。 默认值: 'utf-8'。 |

**返回值:**

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

**示例:**

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

let buf = buffer.from('this buffer is a buffer');
L
liu-ganlin 已提交
911 912
console.log(buf.lastIndexOf('this').toString());	// 打印: 0
console.log(buf.lastIndexOf('buffer').toString());	// 打印: 17
L
lengchangjing 已提交
913 914 915 916 917 918 919 920 921 922 923 924 925 926

let buf1 = buffer.from("13236");
try {
  let index = buf1.lastIndexOf(true);
} catch (err) {
  console.log("lastIndexOf exception: " + JSON.stringify(err));
}

try {
  let index1 = buf1.lastIndexOf("a", "utf9");
} catch (err) {
  console.log("lastIndexOf exception: " + JSON.stringify(err));
}

L
liu-ganlin 已提交
927 928 929 930 931
```


### readBigInt64BE

L
liu-ganlin 已提交
932
readBigInt64BE(offset?: number): bigint
L
liu-ganlin 已提交
933 934 935 936 937 938 939 940 941

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
942
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
943 944 945 946 947

**返回值:**

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

L
lengchangjing 已提交
950 951 952 953 954 955 956 957
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
958 959 960 961 962 963 964
**示例:**

```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 已提交
965
console.log(buf.readBigInt64BE(0).toString());
L
lengchangjing 已提交
966 967 968 969 970 971 972 973

let buf1 = buffer.allocUninitializedFromPool(8);
buf1.writeBigInt64BE(0x0102030405060708n, 0);
try {
  let ref = buf1.readBigInt64BE(1).toString(16);
} catch (err) {
  console.log("readBigInt64BE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
974 975 976 977
```

### readBigInt64LE

L
liu-ganlin 已提交
978
readBigInt64LE(offset?: number): bigint
L
liu-ganlin 已提交
979

L
liu-ganlin 已提交
980
从指定的`offset`处读取有符号的小端序64位整数。
L
liu-ganlin 已提交
981 982 983 984 985 986 987

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
988
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
989 990 991 992 993

**返回值:**

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

L
lengchangjing 已提交
996 997 998 999 1000 1001 1002 1003
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1004 1005 1006 1007 1008 1009 1010
**示例:**

```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 已提交
1011
console.log(buf.readBigInt64LE(0).toString());
L
lengchangjing 已提交
1012 1013 1014 1015 1016 1017 1018 1019

let buf1 = buffer.allocUninitializedFromPool(8);
buf1.writeBigInt64BE(0x0102030405060708n, 0);
try {
  let ref = buf1.readBigInt64LE(1).toString(16);
} catch (err) {
  console.log("readBigInt64LE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1020 1021 1022 1023
```

### readBigUInt64BE

L
liu-ganlin 已提交
1024
readBigUInt64BE(offset?: number): bigint
L
liu-ganlin 已提交
1025 1026 1027 1028 1029 1030 1031 1032 1033

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1034
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1035 1036 1037 1038 1039

**返回值:**

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

L
lengchangjing 已提交
1042 1043 1044 1045 1046 1047 1048 1049
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1050 1051 1052 1053 1054 1055 1056
**示例:**

```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 已提交
1057
console.log(buf.readBigUInt64BE(0).toString());
L
lengchangjing 已提交
1058 1059 1060 1061 1062 1063 1064 1065

let buf1 = buffer.allocUninitializedFromPool(8);
buf1.writeBigUInt64BE(0xdecafafecacefaden, 0);
try {
  let ref = buf1.readBigUInt64BE(1).toString(16);
} catch (err) {
  console.log("readBigUInt64BE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1066 1067 1068 1069
```

### readBigUInt64LE

L
liu-ganlin 已提交
1070
readBigUInt64LE(offset?: number): bigint
L
liu-ganlin 已提交
1071 1072 1073 1074 1075 1076 1077 1078 1079

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1080
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1081 1082 1083 1084 1085

**返回值:**

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

L
lengchangjing 已提交
1088 1089 1090 1091 1092 1093 1094 1095
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1096 1097 1098 1099 1100 1101 1102
**示例:**

```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 已提交
1103
console.log(buf.readBigUInt64LE(0).toString());
L
lengchangjing 已提交
1104 1105 1106 1107 1108 1109 1110 1111

let buf1 = buffer.allocUninitializedFromPool(8);
buf1.writeBigUInt64BE(0xdecafafecacefaden, 0);
try {
  let ref = buf1.readBigUInt64LE(1).toString(16);
} catch (err) {
  console.log("readBigUInt64LE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1112 1113 1114 1115
```

### readDoubleBE

L
liu-ganlin 已提交
1116
readDoubleBE(offset?: number): number
L
liu-ganlin 已提交
1117 1118 1119 1120 1121 1122 1123 1124 1125

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1126
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1127 1128 1129 1130 1131 1132 1133

**返回值:**

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

L
lengchangjing 已提交
1134 1135 1136 1137 1138 1139 1140 1141
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1142 1143 1144 1145 1146 1147
**示例:**

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

let buf = buffer.from([1, 2, 3, 4, 5, 6, 7, 8]);
L
liu-ganlin 已提交
1148
console.log(buf.readDoubleBE(0).toString());
L
lengchangjing 已提交
1149 1150 1151 1152 1153 1154 1155 1156

let buf1 = buffer.allocUninitializedFromPool(8);
buf1.writeDoubleBE(123.456, 0);
try {
  let ref = buf1.readDoubleBE(1);
} catch (err) {
  console.log("readDoubleBE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1157 1158 1159 1160
```

### readDoubleLE

L
liu-ganlin 已提交
1161
readDoubleLE(offset?: number): number
L
liu-ganlin 已提交
1162 1163 1164 1165 1166 1167 1168 1169 1170

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1171
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1172 1173 1174 1175 1176 1177 1178

**返回值:**

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

L
lengchangjing 已提交
1179 1180 1181 1182 1183 1184 1185 1186
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1187 1188 1189 1190 1191 1192
**示例:**

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

let buf = buffer.from([1, 2, 3, 4, 5, 6, 7, 8]);
L
liu-ganlin 已提交
1193
console.log(buf.readDoubleLE(0).toString());
L
lengchangjing 已提交
1194 1195 1196 1197 1198 1199 1200 1201

let buf1 = buffer.allocUninitializedFromPool(8);
buf1.writeDoubleLE(123.456, 0);
try {
  let ref = buf1.readDoubleLE(1);
} catch (err) {
  console.log("readDoubleLE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1202 1203 1204 1205
```

### readFloatBE

L
liu-ganlin 已提交
1206
readFloatBE(offset?: number): number
L
liu-ganlin 已提交
1207 1208 1209 1210 1211 1212 1213 1214 1215

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

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

**参数:**

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

**返回值:**

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

L
lengchangjing 已提交
1224 1225 1226 1227 1228 1229 1230 1231
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1232 1233 1234 1235 1236 1237
**示例:**

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

let buf = buffer.from([1, 2, 3, 4, 5, 6, 7, 8]);
L
liu-ganlin 已提交
1238
console.log(buf.readFloatBE(0).toString());
L
lengchangjing 已提交
1239 1240 1241 1242 1243 1244 1245 1246

let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeFloatBE(0xcabcbcbc, 0);
try {
  let ref = buf1.readFloatBE(1).toString(16);
} catch (err) {
  console.log("readFloatBE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1247 1248 1249 1250
```

### readFloatLE

L
liu-ganlin 已提交
1251
readFloatLE(offset?: number): number
L
liu-ganlin 已提交
1252 1253 1254 1255 1256 1257 1258 1259 1260

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

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

**参数:**

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

**返回值:**

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

L
lengchangjing 已提交
1269 1270 1271 1272 1273 1274 1275 1276
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

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

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

let buf = buffer.from([1, 2, 3, 4, 5, 6, 7, 8]);
L
liu-ganlin 已提交
1283
console.log(buf.readFloatLE(0).toString());
L
lengchangjing 已提交
1284 1285 1286 1287 1288 1289 1290 1291

let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeFloatLE(0xcabcbcbc, 0);
try {
  let ref = buf1.readFloatLE(1).toString(16);
} catch (err) {
  console.log("readFloatLE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1292 1293 1294 1295
```

### readInt8

L
liu-ganlin 已提交
1296
readInt8(offset?: number): number
L
liu-ganlin 已提交
1297 1298 1299 1300 1301 1302 1303 1304 1305

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1306
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1307 1308 1309 1310 1311 1312 1313

**返回值:**

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

L
lengchangjing 已提交
1314 1315 1316 1317 1318 1319 1320 1321
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1322 1323 1324 1325 1326 1327
**示例:**

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

let buf = buffer.from([-1, 5]);
L
liu-ganlin 已提交
1328 1329
console.log(buf.readInt8(0).toString());	// 打印: -1
console.log(buf.readInt8(1).toString());	// 打印: 5
L
lengchangjing 已提交
1330 1331 1332 1333 1334 1335 1336 1337

let buf1 = buffer.allocUninitializedFromPool(2);
buf1.writeInt8(0x12);
try {
  let ref = buf1.readInt8(2).toString(16);
} catch (err) {
  console.log("readInt8 exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1338 1339 1340 1341
```

### readInt16BE

L
liu-ganlin 已提交
1342
readInt16BE(offset?: number): number
L
liu-ganlin 已提交
1343 1344 1345 1346 1347 1348 1349 1350 1351

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1352
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1353 1354 1355 1356 1357 1358 1359

**返回值:**

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

L
lengchangjing 已提交
1360 1361 1362 1363 1364 1365 1366 1367
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1368 1369 1370 1371 1372
**示例:**

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

L
liu-ganlin 已提交
1373 1374
let buf = buffer.from([0, 5]);
console.log(buf.readInt16BE(0).toString());	// 打印: 5
L
lengchangjing 已提交
1375 1376 1377 1378 1379 1380 1381 1382

let buf1 = buffer.alloc(2);
buf1.writeInt16BE(0x1234, 0);
try {
  let ref = buf1.readInt16BE(1).toString(16);
} catch (err) {
  console.log("readInt16BE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1383 1384 1385 1386
```

### readInt16LE

L
liu-ganlin 已提交
1387
readInt16LE(offset?: number): number
L
liu-ganlin 已提交
1388 1389 1390 1391 1392 1393 1394 1395 1396

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1397
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1398 1399 1400 1401 1402 1403 1404

**返回值:**

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

L
lengchangjing 已提交
1405 1406 1407 1408 1409 1410 1411 1412
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1413 1414 1415 1416 1417
**示例:**

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

L
liu-ganlin 已提交
1418 1419
let buf = buffer.from([0, 5]);
console.log(buf.readInt16LE(0).toString());	// 打印: 1280
L
lengchangjing 已提交
1420 1421 1422 1423 1424 1425 1426 1427

let buf1 = buffer.alloc(2);
buf1.writeInt16BE(0x1234, 0);
try {
  let ref = buf1.readInt16LE(1);
} catch (err) { 
  console.log("readInt16LE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1428 1429 1430 1431
```

### readInt32BE

L
liu-ganlin 已提交
1432
readInt32BE(offset?: number): number
L
liu-ganlin 已提交
1433 1434 1435 1436 1437 1438 1439 1440 1441

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1442
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1443 1444 1445 1446 1447 1448 1449

**返回值:**

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

L
lengchangjing 已提交
1450 1451 1452 1453 1454 1455 1456 1457
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1458 1459 1460 1461 1462 1463
**示例:**

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

let buf = buffer.from([0, 0, 0, 5]);
L
liu-ganlin 已提交
1464
console.log(buf.readInt32BE(0).toString());	// 打印: 5
L
lengchangjing 已提交
1465 1466 1467 1468 1469 1470 1471 1472

let buf1 = buffer.alloc(4);
buf1.writeInt32BE(0x12345678, 0);
try {
  let ref = buf1.readInt32BE(1);
} catch (err) {
  console.log("readInt32BE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1473 1474 1475 1476
```

### readInt32LE

L
liu-ganlin 已提交
1477
readInt32LE(offset?: number): number
L
liu-ganlin 已提交
1478 1479 1480 1481 1482 1483 1484 1485 1486

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1487
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1488 1489 1490 1491 1492 1493 1494

**返回值:**

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

L
lengchangjing 已提交
1495 1496 1497 1498 1499 1500 1501 1502
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1503 1504 1505 1506 1507 1508
**示例:**

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

let buf = buffer.from([0, 0, 0, 5]);
L
liu-ganlin 已提交
1509
console.log(buf.readInt32LE(0).toString());	// 打印: 83886080
L
lengchangjing 已提交
1510 1511 1512 1513 1514 1515 1516 1517

let buf1 = buffer.alloc(4);
buf1.writeInt32BE(0x12345678, 0);
try {
  let ref = buf1.readInt32LE(1);
} catch (err) {
  console.log("readInt32LE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
```

### readIntBE

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

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1532 1533
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 读取的字节数。 |
L
liu-ganlin 已提交
1534 1535 1536 1537 1538 1539 1540 1541


**返回值:**

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

L
lengchangjing 已提交
1542 1543 1544 1545 1546 1547 1548 1549
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "[offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
1550 1551 1552 1553 1554
**示例:**

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

L
liu-ganlin 已提交
1555
let buf = buffer.from("ab");
L
liu-ganlin 已提交
1556
let num = buf.readIntBE(0, 1);
L
liu-ganlin 已提交
1557
console.log(num.toString()); // 97
L
lengchangjing 已提交
1558 1559 1560 1561 1562 1563 1564 1565

let buf1 = buffer.allocUninitializedFromPool(6);
buf1.writeIntBE(0x123456789011, 0, 6);
try {
  let ref = buf1.readIntBE(2, 5).toString(16);
} catch (err) {
  console.log("readIntBE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580
```


### readIntLE

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

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1581 1582
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 读取的字节数。 |
L
liu-ganlin 已提交
1583 1584 1585 1586 1587 1588 1589 1590


**返回值:**

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

L
lengchangjing 已提交
1591 1592 1593 1594 1595 1596 1597 1598
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "[offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
1599 1600 1601 1602 1603 1604 1605
**示例:**

```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 已提交
1606 1607 1608 1609 1610 1611 1612 1613

let buf1 = buffer.allocUninitializedFromPool(6);
buf1.writeIntLE(0x123456789011, 0, 6);
try {
  let ref = buf1.readIntLE(2, 5).toString(16);
} catch (err) {
  console.log("readIntBE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1614 1615 1616 1617
```

### readUInt8

L
liu-ganlin 已提交
1618
readUInt8(offset?: number): number
L
liu-ganlin 已提交
1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636

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

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

**参数:**

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


**返回值:**

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

L
lengchangjing 已提交
1637 1638 1639 1640 1641 1642 1643 1644
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1645 1646 1647 1648 1649 1650
**示例:**

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

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

L
lengchangjing 已提交
1654 1655
let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeUInt8(0x42);
L
lengchangjing 已提交
1656
try {
L
lengchangjing 已提交
1657
  let ref = buf1.readUInt8(4).toString(16);
L
lengchangjing 已提交
1658 1659 1660
} catch (err) {
  console.log("readUInt8 exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1661 1662 1663 1664
```

### readUInt16BE

L
liu-ganlin 已提交
1665
readUInt16BE(offset?: number): number
L
liu-ganlin 已提交
1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683

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

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

**参数:**

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


**返回值:**

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

L
lengchangjing 已提交
1684 1685 1686 1687 1688 1689 1690 1691
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

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

```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 已提交
1700 1701 1702 1703 1704 1705 1706 1707

let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeUInt16BE(0x1234, 0);
try {
  let ref = buf1.readUInt16BE(3).toString(16);
} catch (err) {
  console.log("readUInt16BE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1708 1709 1710 1711
```

### readUInt16LE

L
liu-ganlin 已提交
1712
readUInt16LE(offset?: number): number
L
liu-ganlin 已提交
1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730

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

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

**参数:**

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


**返回值:**

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

L
lengchangjing 已提交
1731 1732 1733 1734 1735 1736 1737 1738
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1739 1740 1741 1742 1743 1744 1745 1746
**示例:**

```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 已提交
1747 1748 1749 1750 1751 1752 1753 1754

let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeUInt16LE(0x1234, 0);
try {
  let ref = buf1.readUInt16LE(3).toString(16);
} catch (err) {
  console.log("readUInt16LE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1755 1756 1757 1758
```

### readUInt32BE

L
liu-ganlin 已提交
1759
readUInt32BE(offset?: number): number
L
liu-ganlin 已提交
1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777

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

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

**参数:**

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


**返回值:**

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

L
lengchangjing 已提交
1778 1779 1780 1781 1782 1783 1784 1785
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1786 1787 1788 1789 1790 1791 1792
**示例:**

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

let buf = buffer.from([0x12, 0x34, 0x56, 0x78]);
console.log(buf.readUInt32BE(0).toString(16));
L
lengchangjing 已提交
1793 1794 1795 1796 1797 1798 1799 1800

let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeUInt32BE(0x12345678, 0);
try {
  let ref = buf1.readUInt32BE(1).toString(16);
} catch (err) {
  console.log("readUInt32BE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1801 1802 1803 1804
```

### readUInt32LE

L
liu-ganlin 已提交
1805
readUInt32LE(offset?: number): number
L
liu-ganlin 已提交
1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823

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

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

**参数:**

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


**返回值:**

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

L
lengchangjing 已提交
1824 1825 1826 1827 1828 1829 1830 1831
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1832 1833 1834 1835 1836 1837 1838
**示例:**

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

let buf = buffer.from([0x12, 0x34, 0x56, 0x78]);
console.log(buf.readUInt32LE(0).toString(16));
L
lengchangjing 已提交
1839 1840 1841 1842 1843 1844 1845 1846

let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeUInt32LE(0x12345678, 0);
try {
  let ref = buf1.readUInt32LE(1).toString(16);
} catch (err) {
  console.log("readUInt32LE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860
```

### readUIntBE

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

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1861 1862
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要读取的字节数。 |
L
liu-ganlin 已提交
1863 1864 1865 1866 1867 1868 1869 1870


**返回值:**

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

L
lengchangjing 已提交
1871 1872 1873 1874 1875 1876 1877 1878
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "[offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
1879 1880 1881 1882 1883 1884 1885
**示例:**

```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 已提交
1886 1887 1888 1889 1890 1891 1892 1893

let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeUIntBE(0x13141516, 0, 4);
try {
  let ref = buf1.readUIntBE(2, 3).toString(16);
} catch (err) {
  console.log("readUIntBE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907
```

### readUIntLE

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

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1908 1909
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要读取的字节数。 |
L
liu-ganlin 已提交
1910 1911 1912 1913 1914 1915 1916 1917


**返回值:**

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

L
lengchangjing 已提交
1918 1919 1920 1921 1922 1923 1924 1925
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "[offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
1926 1927 1928 1929 1930 1931 1932
**示例:**

```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 已提交
1933 1934 1935 1936 1937 1938 1939 1940

let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeUIntLE(0x13141516, 0, 4);
try {
  let ref = buf1.readUIntLE(2, 3).toString(16);
} catch (err) {
  console.log("readUIntLE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993
```

### subarray

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

截取指定位置的`this`实例并返回。

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| start | number | 否 | 截取开始位置。 默认值: 0。 |
| end | number | 否 |  截取结束位置(不包括在内)。 默认值: buf.length。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Buffer | 新的Buffer实例。 |

**示例:**

```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
```

### swap16

swap16(): Buffer

`this`实例解释为无符号的16位整数数组,并就地交换字节顺序。

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


**返回值:**

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

L
lengchangjing 已提交
1994 1995 1996 1997 1998 1999 2000 2001
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200009 | Buffer size must be a multiple of 16-bits |

L
liu-ganlin 已提交
2002 2003 2004 2005 2006 2007
**示例:**

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

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

buf1.swap16();
L
liu-ganlin 已提交
2011
console.log(buf1.toString('hex'));	// 打印: 0201040306050807
L
lengchangjing 已提交
2012 2013 2014 2015 2016 2017 2018

let buf2 = buffer.from("132");
try {
  buf2.swap16();
} catch (err) {
  console.log("swap16 exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035
```

### swap32

swap32(): Buffer

`this`实例解释为无符号的32位整数数组,并就地交换字节顺序

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


**返回值:**

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

L
lengchangjing 已提交
2036 2037 2038 2039 2040 2041 2042 2043
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200009 | Buffer size must be a multiple of 32-bits |

L
liu-ganlin 已提交
2044 2045 2046 2047 2048 2049
**示例:**

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

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

buf1.swap32();
L
liu-ganlin 已提交
2053
console.log(buf1.toString('hex'));	// 打印: 0403020108070605
L
lengchangjing 已提交
2054 2055 2056 2057 2058 2059 2060

let buf2 = buffer.from("132");
try {
  buf2.swap32();
} catch (err) {
  console.log("swap32 exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077
```

### swap64

swap64(): Buffer

`this`实例解释为无符号的64位整数数组,并就地交换字节顺序

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


**返回值:**

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

L
lengchangjing 已提交
2078 2079 2080 2081 2082 2083 2084 2085
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200009 | Buffer size must be a multiple of 64-bits |

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

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

let buf1 = buffer.from([0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8]);
L
liu-ganlin 已提交
2092
console.log(buf1.toString('hex'));	// 打印: 0102030405060708
L
liu-ganlin 已提交
2093
buf1.swap64();
L
liu-ganlin 已提交
2094
console.log(buf1.toString('hex'));	// 打印: 0807060504030201
L
lengchangjing 已提交
2095 2096 2097 2098 2099 2100 2101

let buf2 = buffer.from("1234567");
try {
  buf2.swap64();
} catch (err) {
  console.log("swap64 exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124
```

### toJSON

toJSON(): Object

将buf转为JSON并返回。

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


**返回值:**

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

**示例:**

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

let buf1 = buffer.from([0x1, 0x2, 0x3, 0x4, 0x5]);
L
liu-ganlin 已提交
2125 2126
let obj = buf1.toJSON();
console.log(JSON.stringify(obj))
L
liu-ganlin 已提交
2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162
// 打印: {"type":"Buffer","data":[1,2,3,4,5]}
```

### toString

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

`this`实例中指定位置数据转成指定编码格式字符串并返回。

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| encoding | string | 否 | 字符编码格式。 默认值: 'utf-8'。 |
| start  | number | 否 |  开始位置。 默认值: 0。 |
| end  | number | 否 |  结束位置。 默认值: buf.length。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| 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
L
lengchangjing 已提交
2163 2164 2165 2166 2167 2168 2169

let buf2 = buffer.from("abc");
try {
  let str = buf2.toString("utf9");
} catch (err) {
  console.log("toString exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191
```

### values

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 已提交
2192 2193
for (let value of buf1.values()) {
  console.log(value.toString());
L
liu-ganlin 已提交
2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211
}
```

### write

write(str: string, offset?: number, length?: number, encoding?: string): number

从buf的offset偏移写入指定编码的字符串str,写入的字节长度为length

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| str | string | 是 | 要写入Buffer的字符串。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |
| length | number | 否 | 最大字节长度。 默认值: (buf.length - offset)。|
L
liu-ganlin 已提交
2212
| encoding | BufferEncoding | 否 | 字符编码。 默认值: 'utf-8'。 |
L
liu-ganlin 已提交
2213 2214 2215 2216 2217 2218 2219 2220


**返回值:**

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

L
lengchangjing 已提交
2221 2222 2223 2224 2225 2226 2227 2228
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "[offset/length]" is out of range. |

L
liu-ganlin 已提交
2229 2230 2231 2232 2233 2234 2235
**示例:**

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

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

L
liu-ganlin 已提交
2239 2240
let buffer1 = buffer.alloc(10);
let length = buffer1.write('abcd', 8);
L
lengchangjing 已提交
2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261

let buf1 = buffer.alloc(8);
try {
  let offset1 = buf1.write("abcde", "utf9");
} catch (err) {
  console.log("write exception: " + JSON.stringify(err));
}

let buf2 = buffer.alloc(8);
try {
  let offset2 = buf2.write(10);
} catch (err) {
  console.log("write exception: " + JSON.stringify(err));
}

let buf3 = buffer.alloc(8);
try {
  let offset3 = buf3.write("abcde", -1);
} catch (err) {
  console.log("write exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2262 2263 2264 2265
```

### writeBigInt64BE

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

L
lengchangjing 已提交
2268
从buf的offset偏移写入有符号的大端序64位BigInt型数据value
L
liu-ganlin 已提交
2269 2270 2271 2272 2273 2274 2275

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
2276
| value | bigint | 是 | 写入 buf 的数字。 |
L
liu-ganlin 已提交
2277 2278 2279 2280 2281 2282 2283 2284 2285
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2286 2287 2288 2289 2290 2291 2292 2293
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
2294 2295 2296 2297 2298 2299 2300
**示例:**

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

let buf = buffer.allocUninitializedFromPool(8);
buf.writeBigInt64BE(0x0102030405060708n, 0);
L
lengchangjing 已提交
2301 2302 2303 2304 2305 2306 2307

let buf1 = buffer.allocUninitializedFromPool(8);
try {
  let ref = buf1.writeBigInt64BE(0x0102030405060708n, 1);
} catch (err) {
  console.log("writeBigInt64BE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2308 2309 2310 2311
```

### writeBigInt64LE

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

L
lengchangjing 已提交
2314
从buf的offset偏移写入有符号的小端序64位BigInt型数据value
L
liu-ganlin 已提交
2315 2316 2317 2318 2319 2320 2321

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
2322
| value | bigint | 是 | 写入 buf 的数字。 |
L
liu-ganlin 已提交
2323 2324 2325 2326 2327 2328 2329 2330 2331
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2332 2333 2334 2335 2336 2337 2338 2339
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
2340 2341 2342 2343 2344 2345 2346
**示例:**

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

let buf = buffer.allocUninitializedFromPool(8);
buf.writeBigInt64LE(0x0102030405060708n, 0);
L
lengchangjing 已提交
2347 2348 2349 2350 2351 2352 2353

let buf1 = buffer.allocUninitializedFromPool(8);
try {
  let ref = buf1.writeBigInt64LE(0x0102030405060708n, 1);
} catch (err) {
  console.log("writeBigInt64LE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2354 2355 2356 2357
```

### writeBigUInt64BE

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

L
lengchangjing 已提交
2360
从buf的offset偏移写入无符号的大端序64位BigUInt型数据value
L
liu-ganlin 已提交
2361 2362 2363 2364 2365 2366 2367

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
2368
| value | bigint | 是 | 写入 buf 的数字。 |
L
liu-ganlin 已提交
2369 2370 2371 2372 2373 2374 2375 2376 2377
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2378 2379 2380 2381 2382 2383 2384 2385
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
2386 2387 2388 2389 2390 2391 2392
**示例:**

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

let buf = buffer.allocUninitializedFromPool(8);
buf.writeBigUInt64BE(0xdecafafecacefaden, 0);
L
lengchangjing 已提交
2393 2394 2395 2396 2397 2398 2399

let buf1 = buffer.allocUninitializedFromPool(8);
try {
  let ref = buf1.writeBigUInt64BE(0xdecafafecacefaden, 1);
} catch (err) {
  console.log("writeBigUInt64BE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2400 2401 2402 2403
```

### writeBigUInt64LE

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

L
lengchangjing 已提交
2406
从buf的offset偏移写入无符号的小端序64位BigUInt型数据value
L
liu-ganlin 已提交
2407 2408 2409 2410 2411 2412 2413

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
2414
| value | bigint | 是 | 写入 buf 的数字。 |
L
liu-ganlin 已提交
2415 2416 2417 2418 2419 2420 2421 2422 2423
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2424 2425 2426 2427 2428 2429 2430 2431
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
2432 2433 2434 2435 2436 2437 2438
**示例:**

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

let buf = buffer.allocUninitializedFromPool(8);
buf.writeBigUInt64LE(0xdecafafecacefaden, 0);
L
lengchangjing 已提交
2439

L
lengchangjing 已提交
2440
let buf1 = buffer.allocUninitializedFromPool(8);
L
lengchangjing 已提交
2441
try {
L
lengchangjing 已提交
2442
  let ref = buf1.writeBigUInt64LE(0xdecafafecacefaden, 1);
L
lengchangjing 已提交
2443 2444 2445
} catch (err) {
  console.log("writeBigUInt64LE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2446 2447 2448 2449
```

### writeDoubleBE

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

L
lengchangjing 已提交
2452
从buf的offset偏移写入大端序的64位双浮点型数据value
L
liu-ganlin 已提交
2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数字。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2470 2471 2472 2473 2474 2475 2476 2477
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
2478 2479 2480 2481 2482 2483 2484
**示例:**

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

let buf = buffer.allocUninitializedFromPool(8);
buf.writeDoubleBE(123.456, 0);
L
lengchangjing 已提交
2485 2486 2487 2488 2489 2490 2491

let buf1 = buffer.allocUninitializedFromPool(8);
try {
  let ref = buf1.writeDoubleBE(123.456, 1);
} catch (err) {
  console.log("writeDoubleBE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2492 2493 2494 2495
```

### writeDoubleLE

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

L
lengchangjing 已提交
2498
从buf的offset偏移写入小端序的64位双浮点型数据value
L
liu-ganlin 已提交
2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数字。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2516 2517 2518 2519 2520 2521 2522 2523
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

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

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

let buf = buffer.allocUninitializedFromPool(8);
buf.writeDoubleLE(123.456, 0);
L
lengchangjing 已提交
2531

L
lengchangjing 已提交
2532
let buf1 = buffer.allocUninitializedFromPool(8);
L
lengchangjing 已提交
2533
try {
L
lengchangjing 已提交
2534
  let ref = buf1.writeDoubleLE(123.456, 1);
L
lengchangjing 已提交
2535 2536 2537
} catch (err) {
  console.log("writeDoubleLE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2538 2539 2540 2541
```

### writeFloatBE

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

L
lengchangjing 已提交
2544
从buf的offset偏移写入大端序的32位浮点型数据value
L
liu-ganlin 已提交
2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数字。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2562 2563 2564 2565 2566 2567 2568 2569
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
2570 2571 2572 2573 2574 2575 2576
**示例:**

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

let buf = buffer.allocUninitializedFromPool(8);
buf.writeFloatBE(0xcafebabe, 0);
L
lengchangjing 已提交
2577 2578 2579 2580 2581 2582 2583

let buf1 = buffer.allocUninitializedFromPool(4);
try {
  let ref = buf1.writeFloatBE(0xcabcbcbc, 5);
} catch (err) {
  console.log("writeFloatBE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2584 2585 2586 2587 2588
```


### writeFloatLE

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

L
lengchangjing 已提交
2591
从buf的offset偏移写入小端序的32位浮点型数据value
L
liu-ganlin 已提交
2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数字。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2609 2610 2611 2612 2613 2614 2615 2616
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
2617 2618 2619 2620 2621 2622 2623
**示例:**

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

let buf = buffer.allocUninitializedFromPool(8);
buf.writeFloatLE(0xcafebabe, 0);
L
lengchangjing 已提交
2624 2625 2626 2627 2628 2629 2630

let buf1 = buffer.allocUninitializedFromPool(4);
try {
  let ref = buf1.writeFloatLE(0xcabcbcbc, 5);
} catch (err) {
  console.log("writeFloatLE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2631 2632 2633 2634
```

### writeInt8

L
liu-ganlin 已提交
2635
writeInt8(value: number, offset?: number): number
L
liu-ganlin 已提交
2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654

从buf的offset偏移写入8位有符号整型数据value

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数字。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2655 2656 2657 2658 2659 2660 2661 2662
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
2663 2664 2665 2666 2667 2668 2669 2670
**示例:**

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

let buf = buffer.allocUninitializedFromPool(2);
buf.writeInt8(2, 0);
buf.writeInt8(-2, 1);
L
lengchangjing 已提交
2671 2672 2673 2674 2675 2676 2677

let buf1 = buffer.allocUninitializedFromPool(2);
try {
  let ref = buf1.writeInt8(2, -1);
} catch (err) {
  console.log("writeInt8 exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2678 2679 2680 2681 2682
```


### writeInt16BE

L
liu-ganlin 已提交
2683
writeInt16BE(value: number, offset?: number): number
L
liu-ganlin 已提交
2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702

从buf的offset偏移写入大端序的16位有符号整型数据value

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数字。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2703 2704 2705 2706 2707 2708 2709 2710
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
2711 2712 2713 2714 2715 2716 2717
**示例:**

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

let buf = buffer.allocUninitializedFromPool(2);
buf.writeInt16BE(0x0102, 0);
L
lengchangjing 已提交
2718 2719 2720 2721 2722 2723 2724

let buf1 = buffer.alloc(2);
try {
  let ref = buf1.writeInt16BE(0x7bca, -1);
} catch (err) {
  console.log("writeInt16BE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2725 2726 2727 2728 2729
```


### writeInt16LE

L
liu-ganlin 已提交
2730
writeInt16LE(value: number, offset?: number): number
L
liu-ganlin 已提交
2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749

从buf的offset偏移写入小端序的16位有符号整型数据value

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数字。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2750 2751 2752 2753 2754 2755 2756 2757
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
2758 2759 2760 2761 2762 2763 2764
**示例:**

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

let buf = buffer.allocUninitializedFromPool(2);
buf.writeInt16LE(0x0304, 0);
L
lengchangjing 已提交
2765 2766 2767 2768 2769 2770 2771

let buf1 = buffer.alloc(2);
try {
  let ref = buf1.writeInt16LE(0x7bca, -1);
} catch (err) {
  console.log("writeInt16LE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2772 2773 2774 2775
```

### writeInt32BE

L
liu-ganlin 已提交
2776
writeInt32BE(value: number, offset?: number): number
L
liu-ganlin 已提交
2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795

从buf的offset偏移写入大端序的32位有符号整型数据value

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数字。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2796 2797 2798 2799 2800 2801 2802 2803
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
2804 2805 2806 2807 2808 2809 2810
**示例:**

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

let buf = buffer.allocUninitializedFromPool(4);
buf.writeInt32BE(0x01020304, 0);
L
lengchangjing 已提交
2811 2812 2813 2814 2815 2816 2817

let buf1 = buffer.alloc(4);
try {
  let ref = buf1.writeInt32BE(0x12345678, -1);
} catch (err) {
  console.log("writeInt32BE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2818 2819 2820 2821 2822
```


### writeInt32LE

L
liu-ganlin 已提交
2823
writeInt32LE(value: number, offset?: number): number
L
liu-ganlin 已提交
2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842

从buf的offset偏移写入小端序的32位有符号整型数据value

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数字。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2843 2844 2845 2846 2847 2848 2849 2850
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
2851 2852 2853 2854 2855 2856 2857
**示例:**

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

let buf = buffer.allocUninitializedFromPool(4);
buf.writeInt32LE(0x05060708, 0);
L
lengchangjing 已提交
2858 2859 2860 2861 2862 2863 2864

let buf1 = buffer.alloc(4);
try {
  let ref = buf1.writeInt32LE(0x12345678, -1);
} catch (err) {
  console.log("writeInt32LE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2865 2866 2867 2868
```

### writeIntBE

L
liu-ganlin 已提交
2869
writeIntBE(value: number, offset: number, byteLength: number): number
L
liu-ganlin 已提交
2870 2871 2872 2873 2874 2875 2876 2877 2878 2879

从buf的offset偏移写入大端序的有符号value数据,value字节长度为byteLength

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数字。 |
L
liu-ganlin 已提交
2880 2881
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要写入的字节数。 |
L
liu-ganlin 已提交
2882 2883 2884 2885 2886 2887 2888 2889


**返回值:**

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

L
lengchangjing 已提交
2890 2891 2892 2893 2894 2895 2896 2897
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "[value/offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
2898 2899 2900 2901 2902 2903 2904
**示例:**

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

let buf = buffer.allocUninitializedFromPool(6);
buf.writeIntBE(0x1234567890ab, 0, 6);
L
lengchangjing 已提交
2905 2906 2907 2908 2909 2910 2911

let buf1 = buffer.allocUninitializedFromPool(6);
try {
  let ref = buf1.writeIntBE(0x1234567890ab, 1, 6);
} catch (err) {
  console.log("writeIntBE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2912 2913 2914 2915 2916
```


### writeIntLE

L
liu-ganlin 已提交
2917
writeIntLE(value: number, offset: number, byteLength: number): number
L
liu-ganlin 已提交
2918 2919 2920 2921 2922 2923 2924 2925 2926 2927

从buf的offset偏移写入小端序的有符号value数据,value字节长度为byteLength

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数字。 |
L
liu-ganlin 已提交
2928 2929
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要写入的字节数。 |
L
liu-ganlin 已提交
2930 2931 2932 2933 2934 2935 2936 2937


**返回值:**

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

L
lengchangjing 已提交
2938 2939 2940 2941 2942 2943 2944 2945
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "[value/offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
2946 2947 2948 2949 2950 2951 2952
**示例:**

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

let buf = buffer.allocUninitializedFromPool(6);
buf.writeIntLE(0x1234567890ab, 0, 6);
L
lengchangjing 已提交
2953 2954 2955 2956 2957 2958 2959

let buf1 = buffer.allocUninitializedFromPool(6);
try {
  let ref = buf1.writeIntLE(0x1234567890ab, 1, 6);
} catch (err) {
  console.log("writeIntLE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
2960 2961 2962 2963
```

### writeUInt8

L
liu-ganlin 已提交
2964
writeUInt8(value: number, offset?: number): number
L
liu-ganlin 已提交
2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983

从buf的offset偏移写入8位无符号整型数据value

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数字。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2984 2985 2986 2987 2988 2989 2990 2991
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
2992 2993 2994 2995 2996 2997 2998 2999 3000 3001
**示例:**

```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);
L
lengchangjing 已提交
3002 3003 3004 3005 3006 3007 3008

let buf1 = buffer.allocUninitializedFromPool(4);
try {
  let ref = buf1.writeUInt8(0x42, -1);
} catch (err) {
  console.log("writeUInt8 exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
3009 3010 3011 3012
```

### writeUInt16BE

L
liu-ganlin 已提交
3013
writeUInt16BE(value: number, offset?: number): number
L
liu-ganlin 已提交
3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032

从buf的offset偏移写入大端序的16位无符号整型数据value

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数字。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
3033 3034 3035 3036 3037 3038 3039 3040
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
3041 3042 3043 3044 3045 3046 3047 3048
**示例:**

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

let buf = buffer.allocUninitializedFromPool(4);
buf.writeUInt16BE(0xdead, 0);
buf.writeUInt16BE(0xbeef, 2);
L
lengchangjing 已提交
3049 3050 3051 3052 3053 3054 3055

let buf1 = buffer.allocUninitializedFromPool(4);
try {
  let ref = buf1.writeUInt16BE(0xdeadfc, 0);
} catch (err) {
  console.log("writeUInt16BE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
3056 3057 3058 3059
```

### writeUInt16LE

L
liu-ganlin 已提交
3060
writeUInt16LE(value: number, offset?: number): number
L
liu-ganlin 已提交
3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079

从buf的offset偏移写入小端序的16位无符号整型数据value

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数字。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
3080 3081 3082 3083 3084 3085 3086 3087
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
3088 3089 3090 3091 3092 3093 3094 3095
**示例:**

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

let buf = buffer.allocUninitializedFromPool(4);
buf.writeUInt16LE(0xdead, 0);
buf.writeUInt16LE(0xbeef, 2);
L
lengchangjing 已提交
3096 3097 3098 3099 3100 3101 3102

let buf1 = buffer.allocUninitializedFromPool(4);
try {
  let ref = buf1.writeUInt16LE(0xdeadfc, 0);
} catch (err) {
  console.log("writeUInt16LE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
3103 3104 3105 3106
```

### writeUInt32BE

L
liu-ganlin 已提交
3107
writeUInt32BE(value: number, offset?: number): number
L
liu-ganlin 已提交
3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126

从buf的offset偏移写入大端序的32位无符号整型数据value

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数据。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
3127 3128 3129 3130 3131 3132 3133 3134
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
3135 3136 3137 3138 3139 3140 3141
**示例:**

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

let buf = buffer.allocUninitializedFromPool(4);
buf.writeUInt32BE(0xfeedface, 0);
L
lengchangjing 已提交
3142 3143 3144 3145 3146 3147 3148

let buf1 = buffer.allocUninitializedFromPool(4);
try {
  let ref = buf1.writeUInt32BE(0xfeedface, -1);
} catch (err) {
  console.log("writeUInt32BE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
3149 3150 3151 3152
```

### writeUInt32LE

L
liu-ganlin 已提交
3153
writeUInt32LE(value: number, offset?: number): number
L
liu-ganlin 已提交
3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172

从buf的offset偏移写入小端序的32位无符号整型数据value

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数字。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
3173 3174 3175 3176 3177 3178 3179 3180
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

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

L
liu-ganlin 已提交
3181 3182 3183 3184 3185 3186 3187
**示例:**

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

let buf = buffer.allocUninitializedFromPool(4);
buf.writeUInt32LE(0xfeedface, 0);
L
lengchangjing 已提交
3188 3189 3190 3191 3192 3193 3194

let buf1 = buffer.allocUninitializedFromPool(4);
try {
  let ref = buf1.writeUInt32LE(0xfeedface, -1);
} catch (err) {
  console.log("writeUInt32LE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
3195 3196 3197 3198
```

### writeUIntBE

L
liu-ganlin 已提交
3199
writeUIntBE(value: number, offset: number, byteLength: number): number
L
liu-ganlin 已提交
3200 3201 3202 3203 3204 3205 3206 3207 3208 3209

从buf的offset偏移写入大端序的无符号value数据,value字节长度为byteLength

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数据。 |
L
liu-ganlin 已提交
3210 3211
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要写入的字节数。 |
L
liu-ganlin 已提交
3212 3213 3214 3215 3216 3217 3218 3219


**返回值:**

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

L
lengchangjing 已提交
3220 3221 3222 3223 3224 3225 3226 3227
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "[value/offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
3228 3229 3230 3231 3232 3233 3234
**示例:**

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

let buf = buffer.allocUninitializedFromPool(6);
buf.writeUIntBE(0x1234567890ab, 0, 6);
L
lengchangjing 已提交
3235 3236 3237 3238 3239 3240 3241

let buf1 = buffer.allocUninitializedFromPool(4);
try {
  let ref = buf1.writeUIntBE(0x13141516, 0, 1);
} catch (err) {
  console.log("writeUIntBE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
3242 3243 3244 3245
```

### writeUIntLE

L
liu-ganlin 已提交
3246
writeUIntLE(value: number, offset: number, byteLength: number): number
L
liu-ganlin 已提交
3247 3248 3249 3250 3251 3252 3253 3254 3255 3256

从buf的offset偏移写入小端序的无符号value数据,value字节长度为byteLength

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 写入 buf 的数据。 |
L
liu-ganlin 已提交
3257 3258
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要写入的字节数。 |
L
liu-ganlin 已提交
3259 3260 3261 3262 3263 3264 3265 3266


**返回值:**

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

L
lengchangjing 已提交
3267 3268 3269 3270 3271 3272 3273 3274
**错误码:**

以下错误码的详细介绍请参见[buffer错误码](../errorcodes/errorcode-buffer.md)

| 错误码ID | 错误码信息 |
| -------- | -------- |
| 10200001 | The value of "[value/offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
3275 3276 3277 3278 3279 3280 3281
**示例:**

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

let buf = buffer.allocUninitializedFromPool(6);
buf.writeUIntLE(0x1234567890ab, 0, 6);
L
lengchangjing 已提交
3282 3283 3284 3285 3286 3287 3288

let buf1 = buffer.allocUninitializedFromPool(4);
try {
  let ref = buf1.writeUIntLE(0x13141516, 0, 1);
} catch (err) {
  console.log("writeUIntLE exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
3289 3290 3291 3292
```

### transcode

L
liu-ganlin 已提交
3293
transcode(source: Buffer | Uint8Array, fromEnc: string, toEnc: string): Buffer
L
liu-ganlin 已提交
3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318

将给定的Buffer或Uint8Array实例从一种字符编码重新编码为另一种

**系统能力:** 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 已提交
3319
let newBuf = buffer.transcode(buffer.from(''), 'utf-8', 'ascii');
L
liu-ganlin 已提交
3320
console.log(newBuf.toString('ascii'));
L
lengchangjing 已提交
3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339

try {
  let buf1 = buffer.transcode(10, "utf8", "ucs2");
} catch (err) {
  console.log("transcode exception: " + JSON.stringify(err));
}

let buf2 = buffer.from("测试");
try {
  let buf3 = buffer.transcode(buf2, 0, "ucs2");
} catch (err) {
  console.log("transcode exception: " + JSON.stringify(err));
}

try {
  let buf3 = buffer.transcode(buf2, "utf8", 0);
} catch (err) {
  console.log("transcode exception: " + JSON.stringify(err));
}
L
liu-ganlin 已提交
3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354
```

## Blob

### 属性

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

| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
| size | number | 是 | 否 | Blob实例的总字节大小。 |
| type | string | 是 | 否 | Blob实例的内容类型。 |

### constructor

L
liu-ganlin 已提交
3355
constructor(sources: string[] | ArrayBuffer[] | TypedArray[] | DataView[] | Blob[] , options?: Object)
L
liu-ganlin 已提交
3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369

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内容类型 |


**示例:**
L
lengchangjing 已提交
3370 3371
  ```ts
  import buffer from '@ohos.buffer';
L
liu-ganlin 已提交
3372

L
lengchangjing 已提交
3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387
  let blob = new buffer.Blob(['a', 'b', 'c']);
  let blob1 = new buffer.Blob(['a', 'b', 'c'], {endings:'native', type: 'MIME'});

  try {
    let blob1 = new buffer.Blob(["a", "b", "c"], 10);
  } catch (err) {
    console.log("Blob constructor exception: " + JSON.stringify(err));
  }

  try {
    let blob2 = new buffer.Blob("abc", { type: "new type", endings: "transparent" });
  } catch (err) {
    console.log("Blob constructor exception: " + JSON.stringify(err));
  }
  ```
L
liu-ganlin 已提交
3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406

### encode

arrayBuffer(): Promise&lt;ArrayBuffer&gt;

将Blob中的数据放入到ArrayBuffer中,并返回一个Promise。

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

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;ArrayBuffer&gt; | 返回包含Blob数据的ArrayBuffer的Promise。 |

**示例:**
  ```ts
  let blob = new buffer.Blob(['a', 'b', 'c']);
  let pro = blob.arrayBuffer();
  pro.then(val => {
L
liu-ganlin 已提交
3407 3408
    let uintarr = new Uint8Array(val);
    console.log(uintarr.toString());
L
liu-ganlin 已提交
3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438
  });
  ```
### slice

slice(start?: number, end?: number, type?: string): Blob

创建并返回一个复制原blob对象中start到end位置数据的新blob实例对象。

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| start | number | 否 | 起始位置。 |
| end | number | 否 | 结束位置。 |
| type | string | 否 | 内容类型。 |

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
| Blob | 新的Blob实例对象。 |

**示例:**
  ```ts
  let blob = new buffer.Blob(['a', 'b', 'c']);
  let blob2 = blob.slice(0, 2);
  let blob3 = blob.slice(0, 2, "MIME");
  ```

L
lengchangjing 已提交
3439
### text
L
liu-ganlin 已提交
3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459

text(): Promise&lt;string&gt;

返回一个Promise,该Promise中的值为UTF8编码类型的文本。

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

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;string&gt; | 包含以UTF8编码的文本的Promise。 |

**示例:**
  ```ts
  let blob = new buffer.Blob(['a', 'b', 'c']);
  let pro = blob.text();
  pro.then(val => {
      console.log(val)
  });
  ```