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

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

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

B
bi-hu 已提交
7 8 9
> **说明:**
>
> 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
L
liu-ganlin 已提交
10 11 12 13 14 15 16

## 导入模块

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

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

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

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

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

B
bi-hu 已提交
37
## buffer.alloc
L
liu-ganlin 已提交
38 39 40

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

B
bi-hu 已提交
41
创建一定字节长度的Buffer对象,并初始化。
L
liu-ganlin 已提交
42 43 44 45 46 47 48

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
49 50 51
| size | number | 是 | 指定的Buffer对象长度,单位:字节。 |
| fill | string \| Buffer \| number | 否 | 填充至新缓存区的值,默认值: 0。 |
| encoding | [BufferEncoding](#bufferencoding) | 否 | 编码格式(当`fill`为string时,才有意义)。 默认值: 'utf-8'。 |
L
liu-ganlin 已提交
52 53 54 55 56

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
57
| Buffer | 返回一个Buffer对象。 |
L
liu-ganlin 已提交
58 59 60 61 62 63 64 65 66 67 68

**示例:**

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

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

B
bi-hu 已提交
69
## buffer.allocUninitializedFromPool
L
liu-ganlin 已提交
70 71 72

allocUninitializedFromPool(size: number): Buffer

B
bi-hu 已提交
73
创建指定大小未被初始化的Buffer对象。内存从缓冲池分配。
B
bi-hu 已提交
74
创建的Buffer的内容未知,需要使用[fill](#fill)函数来初始化Buffer对象。
L
liu-ganlin 已提交
75 76 77 78 79 80 81

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
82
| size | number | 是 | 指定的Buffer对象长度,单位:字节。 |
L
liu-ganlin 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98

**返回值:**

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

**示例:**

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

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

B
bi-hu 已提交
99
## buffer.allocUninitialized
L
liu-ganlin 已提交
100 101 102

allocUninitialized(size: number): Buffer

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

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

**参数:**

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

**返回值:**

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

**示例:**

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

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

B
bi-hu 已提交
129
## buffer.byteLength
L
liu-ganlin 已提交
130

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

B
bi-hu 已提交
133
根据不同的编码方法,返回指定字符串的字节数。
L
liu-ganlin 已提交
134 135 136 137 138 139 140

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
141
| string | string \| Buffer \| TypedArray \| DataView \| ArrayBuffer \| SharedArrayBuffer | 是 | 指定字符串。 |
B
bi-hu 已提交
142
| encoding | [BufferEncoding](#bufferencoding) | 否 | 编码格式。 默认值: 'utf-8'。 |
L
liu-ganlin 已提交
143 144 145 146 147

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
148
| number | 返回指定字符串的字节数。 |
L
liu-ganlin 已提交
149 150 151 152 153 154 155

**示例:**

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

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

B
bi-hu 已提交
160
## buffer.compare
L
liu-ganlin 已提交
161

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

B
bi-hu 已提交
164
返回两个数组的比较结果,通常用于对Buffer对象数组进行排序。
L
liu-ganlin 已提交
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179


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

**参数:**

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

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
180
| -1&nbsp;\|&nbsp;0&nbsp;\|&nbsp;1 | 如果buf1与buf2相同,则返回0。<br/>如果排序时buf1位于buf2之后,则返回1。<br/>如果排序时buf1位于buf2之前,则返回-1。 |
L
liu-ganlin 已提交
181 182 183 184 185 186 187 188

**示例:**

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

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

191
console.log(Number(res).toString()); // 打印 1
L
liu-ganlin 已提交
192 193
```

B
bi-hu 已提交
194
## buffer.concat
L
liu-ganlin 已提交
195 196 197

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

B
bi-hu 已提交
198
将数组中的内容复制指定字节长度到新的Buffer对象中并返回。
L
liu-ganlin 已提交
199 200 201 202 203 204 205 206

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| list | Buffer[]&nbsp;\|&nbsp;Uint8Array[] | 是 | 实例数组。 |
B
bi-hu 已提交
207
| totalLength | number | 否 | 需要复制的总字节长度。 |
L
liu-ganlin 已提交
208 209 210 211 212

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
213
| Buffer | 返回新的Buffer对象。 |
L
liu-ganlin 已提交
214

L
lengchangjing 已提交
215 216
**错误码:**

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

L
liu-ganlin 已提交
219
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
220 221 222
| -------- | -------- |
| 10200001 | The value of "totalLength" is out of range. |

L
liu-ganlin 已提交
223 224 225 226 227 228 229 230
**示例:**

```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 已提交
231
console.log(buf.toString('hex')); // 3132333461626364
L
liu-ganlin 已提交
232 233
```

B
bi-hu 已提交
234
## buffer.from
L
liu-ganlin 已提交
235

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

B
bi-hu 已提交
238
根据指定数组创建新的Buffer对象。
L
liu-ganlin 已提交
239 240 241 242 243 244 245 246 247 248 249 250 251

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

**参数:**

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

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
252
| Buffer | 新的Buffer对象。 |
L
liu-ganlin 已提交
253 254 255 256 257 258 259

**示例:**

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

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

B
bi-hu 已提交
263
## buffer.from
L
liu-ganlin 已提交
264 265 266

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

B
bi-hu 已提交
267
创建指定长度的与`arrayBuffer`共享内存的Buffer对象。
L
liu-ganlin 已提交
268 269 270 271 272 273 274 275 276

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| arrayBuffer | ArrayBuffer&nbsp;\|&nbsp;SharedArrayBuffer | 是 | 实例对象。 |
| byteOffset | number | 否 | 字节偏移量,默认值: 0。 |
B
bi-hu 已提交
277
| length | number | 否 | 字节长度, 默认值: (arrayBuffer.byteLength - byteOffset)。 |
L
liu-ganlin 已提交
278 279 280 281 282

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
283
| Buffer | 返回一个共享内存的Buffer对象。 |
L
liu-ganlin 已提交
284

L
lengchangjing 已提交
285 286
**错误码:**

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

L
liu-ganlin 已提交
289
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
290 291 292
| -------- | -------- |
| 10200001 | The value of "[byteOffset/length]" is out of range. |

L
liu-ganlin 已提交
293 294 295 296 297 298 299 300 301
**示例:**

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

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

B
bi-hu 已提交
302
## buffer.from
L
liu-ganlin 已提交
303

L
liu-ganlin 已提交
304
from(buffer: Buffer | Uint8Array): Buffer
L
liu-ganlin 已提交
305

B
bi-hu 已提交
306
创建并复制`buffer`数据到新的Buffer对象并返回。
L
liu-ganlin 已提交
307 308 309 310 311 312 313

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
314
| buffer | Buffer&nbsp;\|&nbsp;Uint8Array | 是 | 对象数据。 |
L
liu-ganlin 已提交
315 316 317 318 319

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
320
| Buffer | 新的Buffer对象。 |
L
liu-ganlin 已提交
321 322 323 324 325 326 327 328 329 330

**示例:**

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

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

B
bi-hu 已提交
331
## buffer.from
L
liu-ganlin 已提交
332 333 334

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

B
bi-hu 已提交
335
根据指定的`object`类型数据,创建新的Buffer对象。
L
liu-ganlin 已提交
336 337 338 339 340 341 342

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
343 344
| object | Object | 是 | 支持Symbol.toPrimitive或valueOf()的对象。 |
| offsetOrEncoding | number&nbsp;\|&nbsp;string | 是 | 字节偏移量或编码格式。 |
L
liu-ganlin 已提交
345
| length | number | 是 | 字节长度。 |
L
liu-ganlin 已提交
346 347 348 349 350

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
351
| Buffer | 返回新的Buffer对象。 |
L
liu-ganlin 已提交
352 353 354 355 356 357

**示例:**

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

B
bi-hu 已提交
358
let buf = buffer.from(new String('this is a test'), 'utf8', 14);
L
liu-ganlin 已提交
359 360
```

B
bi-hu 已提交
361
## buffer.from
L
liu-ganlin 已提交
362

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

B
bi-hu 已提交
365
根据指定编码格式的字符串,创建新的Buffer对象。
L
liu-ganlin 已提交
366 367 368 369 370 371 372

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
373
| string | String | 是 | 字符串 |
L
liu-ganlin 已提交
374
| encoding | [BufferEncoding](#bufferencoding) | 否 | 编码格式。 默认值: 'utf-8'。 |
L
liu-ganlin 已提交
375 376 377 378 379

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
380
| Buffer | 返回新的Buffer对象。 |
L
liu-ganlin 已提交
381 382 383 384 385 386 387 388 389 390

**示例:**

```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
B
bi-hu 已提交
391
console.log(buf2.toString()); // 打印: this is a test
L
liu-ganlin 已提交
392 393 394
```


B
bi-hu 已提交
395
## buffer.isBuffer
L
liu-ganlin 已提交
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426

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

B
bi-hu 已提交
427
## buffer.isEncoding
L
liu-ganlin 已提交
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444

isEncoding(encoding: string): boolean

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

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

**参数:**

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

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
445
| boolean | 是支持的编码格式返回true,反之则返回false。 |
L
liu-ganlin 已提交
446 447 448 449 450 451

**示例:**

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

L
liu-ganlin 已提交
452 453 454 455
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 已提交
456 457
```

B
bi-hu 已提交
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 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
## buffer.transcode

transcode(source: Buffer | Uint8Array, fromEnc: string, toEnc: string): Buffer

将给定的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);
let newBuf = buffer.transcode(buffer.from(''), 'utf-8', 'ascii');
console.log(newBuf.toString('ascii'));
```

## Buffer

### 属性

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

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

**错误码:**

以下错误码的详细介绍请参见[语言基础类库错误码](../errorcodes/errorcode-utils.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");
console.log(JSON.stringify(buf.length));
let arrayBuffer = buf.buffer;
console.log(JSON.stringify(new Uint8Array(arrayBuffer)));
console.log(JSON.stringify(buf.byteOffset));
```

### compare
L
liu-ganlin 已提交
523 524 525

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

B
bi-hu 已提交
526
当前Buffer对象与目标Buffer对象进行比较,并返回Buffer在排序中的顺序结果。
L
liu-ganlin 已提交
527 528 529 530 531 532 533 534 535

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

**参数:**

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

L
lengchangjing 已提交
540 541
**返回值:**

L
liu-ganlin 已提交
542 543
| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
544
| number | 返回比较结果。-1:当前排列在目标前,0:当前与目标相同,1:当前排列在目标后。 |
L
liu-ganlin 已提交
545

B
bi-hu 已提交
546 547 548 549 550 551 552 553
**错误码:**

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

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

L
liu-ganlin 已提交
554 555 556 557 558 559 560 561
**示例:**

```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 已提交
562 563 564
console.log(buf1.compare(buf2, 5, 9, 0, 4).toString());	// 打印: 0
console.log(buf1.compare(buf2, 0, 6, 4).toString());	// 打印: -1
console.log(buf1.compare(buf2, 5, 6, 5).toString());	// 打印: 1
L
liu-ganlin 已提交
565 566
```

B
bi-hu 已提交
567
### copy
L
liu-ganlin 已提交
568 569 570 571 572 573 574 575 576 577 578 579 580 581

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。 |
B
bi-hu 已提交
582
| sourceEnd | number | 否 | `this`实例中结束复制的偏移量(不包含结束位置)。 默认值: 当前对象的字节长度。 |
L
liu-ganlin 已提交
583 584 585 586 587 588 589

**返回值:**

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

L
lengchangjing 已提交
590 591
**错误码:**

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

L
liu-ganlin 已提交
594
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
595 596 597
| -------- | -------- |
| 10200001 | The value of "[targetStart/sourceStart/sourceEnd]" is out of range. |

L
liu-ganlin 已提交
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
**示例:**

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

B
bi-hu 已提交
615
### entries
L
liu-ganlin 已提交
616 617 618 619 620 621 622

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

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

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

B
bi-hu 已提交
623 624 625 626 627 628 629
**返回值:**

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

L
liu-ganlin 已提交
630 631 632 633 634 635 636
**示例:**

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

let buf = buffer.from('buffer');
for (let pair of buf.entries()) {
L
liu-ganlin 已提交
637
  console.log(pair.toString());
L
liu-ganlin 已提交
638 639 640
}
```

B
bi-hu 已提交
641
### equals
L
liu-ganlin 已提交
642

L
liu-ganlin 已提交
643
equals(otherBuffer: Uint8Array | Buffer): boolean
L
liu-ganlin 已提交
644 645 646 647 648 649 650 651 652

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
653
| otherBuffer | Uint8Array&nbsp;\|&nbsp;Buffer | 是 | 比较的目标对象。 |
L
liu-ganlin 已提交
654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669

**返回值:**

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

B
bi-hu 已提交
674
### fill
L
liu-ganlin 已提交
675 676 677

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

B
bi-hu 已提交
678
`value`填充当前对象指定位置的数据,默认为循环填充,并返回填充后的Buffer对象。
L
liu-ganlin 已提交
679 680 681 682 683 684 685 686 687

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

**参数:**

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

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
695
| Buffer | 返回一个填充后的Buffer对象。 |
L
liu-ganlin 已提交
696

L
lengchangjing 已提交
697 698
**错误码:**

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

L
liu-ganlin 已提交
701
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
702 703 704
| -------- | -------- |
| 10200001 | The value of "[offset/end]" is out of range. |

L
liu-ganlin 已提交
705 706 707 708 709 710 711 712 713 714
**示例:**

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

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


B
bi-hu 已提交
715
### includes
L
liu-ganlin 已提交
716 717 718 719 720 721 722 723 724 725 726 727 728

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

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

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

B
bi-hu 已提交
747
### indexOf
L
liu-ganlin 已提交
748 749 750

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

B
bi-hu 已提交
751
查找当前对象中第一次出现`value`的索引,如果不包含`value`,则为-1。
L
liu-ganlin 已提交
752 753 754 755 756 757 758

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
759
| value | string&nbsp;\|&nbsp;number&nbsp;\|&nbsp;Buffer&nbsp;\|&nbsp;Uint8Array | 是 | 要查找的内容。 |
L
liu-ganlin 已提交
760
| byteOffset | number | 否 | 字节偏移量。 如果为负数,则从末尾开始计算偏移量。 默认值: 0。 |
L
liu-ganlin 已提交
761
| encoding | [BufferEncoding](#bufferencoding) | 否 | 字符编码格式。 默认值: 'utf-8'。 |
L
liu-ganlin 已提交
762 763 764 765 766 767 768 769 770 771 772 773 774

**返回值:**

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

**示例:**

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

let buf = buffer.from('this is a buffer');
L
liu-ganlin 已提交
775 776
console.log(buf.indexOf('this').toString());	// 打印: 0
console.log(buf.indexOf('is').toString());		// 打印: 2
L
liu-ganlin 已提交
777 778
```

B
bi-hu 已提交
779
### keys
L
liu-ganlin 已提交
780 781 782

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

B
bi-hu 已提交
783
返回一个包含key值的迭代器。
L
liu-ganlin 已提交
784 785 786 787 788 789 790

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

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
791
|  IterableIterator&lt;number&gt; | 返回一个包含key值的迭代器。 |
L
liu-ganlin 已提交
792 793 794 795 796 797 798 799

**示例:**

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

let buf = buffer.from('buffer');
for (const key of buf.keys()) {
L
liu-ganlin 已提交
800
  console.log(key.toString());
L
liu-ganlin 已提交
801 802 803
}
```

B
bi-hu 已提交
804
### lastIndexOf
L
liu-ganlin 已提交
805 806 807 808 809 810 811 812 813 814 815 816 817

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

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | string&nbsp;\|&nbsp;number&nbsp;\|&nbsp;Buffer&nbsp;\|&nbsp;Uint8Array | 是 | 要搜索的内容。 |
| byteOffset | number | 否 | 字节偏移量。 如果为负数,则从末尾开始计算偏移量。 默认值: 0。 |
L
liu-ganlin 已提交
818
| encoding | [BufferEncoding](#bufferencoding) | 否 | 字符编码格式。 默认值: 'utf-8'。 |
L
liu-ganlin 已提交
819 820 821 822 823 824 825 826 827 828 829 830 831

**返回值:**

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

**示例:**

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

let buf = buffer.from('this buffer is a buffer');
L
liu-ganlin 已提交
832 833
console.log(buf.lastIndexOf('this').toString());	// 打印: 0
console.log(buf.lastIndexOf('buffer').toString());	// 打印: 17
L
liu-ganlin 已提交
834 835 836
```


B
bi-hu 已提交
837
### readBigInt64BE
L
liu-ganlin 已提交
838

L
liu-ganlin 已提交
839
readBigInt64BE(offset?: number): bigint
L
liu-ganlin 已提交
840 841 842 843 844 845 846 847 848

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
849
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
850 851 852 853 854

**返回值:**

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

L
lengchangjing 已提交
857 858
**错误码:**

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

L
liu-ganlin 已提交
861
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
862 863 864
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
865 866 867 868 869 870 871
**示例:**

```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 已提交
872
console.log(buf.readBigInt64BE(0).toString());
L
lengchangjing 已提交
873 874 875

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

B
bi-hu 已提交
878
### readBigInt64LE
L
liu-ganlin 已提交
879

L
liu-ganlin 已提交
880
readBigInt64LE(offset?: number): bigint
L
liu-ganlin 已提交
881

L
liu-ganlin 已提交
882
从指定的`offset`处读取有符号的小端序64位整数。
L
liu-ganlin 已提交
883 884 885 886 887 888 889

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
890
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
891 892 893 894 895

**返回值:**

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

L
lengchangjing 已提交
898 899
**错误码:**

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

L
liu-ganlin 已提交
902
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
903 904 905
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
906 907 908 909 910 911 912
**示例:**

```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 已提交
913
console.log(buf.readBigInt64LE(0).toString());
L
lengchangjing 已提交
914 915 916

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

B
bi-hu 已提交
919
### readBigUInt64BE
L
liu-ganlin 已提交
920

L
liu-ganlin 已提交
921
readBigUInt64BE(offset?: number): bigint
L
liu-ganlin 已提交
922 923 924 925 926 927 928 929 930

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
931
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
932 933 934 935 936

**返回值:**

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

L
lengchangjing 已提交
939 940
**错误码:**

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

L
liu-ganlin 已提交
943
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
944 945 946
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
947 948 949 950 951 952 953
**示例:**

```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 已提交
954
console.log(buf.readBigUInt64BE(0).toString());
L
lengchangjing 已提交
955 956 957

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

B
bi-hu 已提交
960
### readBigUInt64LE
L
liu-ganlin 已提交
961

L
liu-ganlin 已提交
962
readBigUInt64LE(offset?: number): bigint
L
liu-ganlin 已提交
963 964 965 966 967 968 969 970 971

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
972
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
973 974 975 976 977

**返回值:**

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

L
lengchangjing 已提交
980 981
**错误码:**

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

L
liu-ganlin 已提交
984
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
985 986 987
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
988 989 990 991 992 993 994
**示例:**

```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 已提交
995
console.log(buf.readBigUInt64LE(0).toString());
L
lengchangjing 已提交
996 997 998

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

B
bi-hu 已提交
1001
### readDoubleBE
L
liu-ganlin 已提交
1002

L
liu-ganlin 已提交
1003
readDoubleBE(offset?: number): number
L
liu-ganlin 已提交
1004 1005 1006 1007 1008 1009 1010 1011 1012

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1013
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1014 1015 1016 1017 1018 1019 1020

**返回值:**

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

L
lengchangjing 已提交
1021 1022
**错误码:**

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

L
liu-ganlin 已提交
1025
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1026 1027 1028
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1029 1030 1031 1032 1033 1034
**示例:**

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

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

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

B
bi-hu 已提交
1041
### readDoubleLE
L
liu-ganlin 已提交
1042

L
liu-ganlin 已提交
1043
readDoubleLE(offset?: number): number
L
liu-ganlin 已提交
1044 1045 1046 1047 1048 1049 1050 1051 1052

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1053
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1054 1055 1056 1057 1058 1059 1060

**返回值:**

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

L
lengchangjing 已提交
1061 1062
**错误码:**

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

L
liu-ganlin 已提交
1065
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1066 1067 1068
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1069 1070 1071 1072 1073 1074
**示例:**

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

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

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

B
bi-hu 已提交
1081
### readFloatBE
L
liu-ganlin 已提交
1082

L
liu-ganlin 已提交
1083
readFloatBE(offset?: number): number
L
liu-ganlin 已提交
1084 1085 1086 1087 1088 1089 1090 1091 1092

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1093
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1094 1095 1096 1097 1098 1099 1100

**返回值:**

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

L
lengchangjing 已提交
1101 1102
**错误码:**

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

L
liu-ganlin 已提交
1105
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1106 1107 1108
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1109 1110 1111 1112 1113 1114
**示例:**

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

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

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

B
bi-hu 已提交
1121
### readFloatLE
L
liu-ganlin 已提交
1122

L
liu-ganlin 已提交
1123
readFloatLE(offset?: number): number
L
liu-ganlin 已提交
1124 1125 1126 1127 1128 1129 1130 1131 1132

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1133
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1134 1135 1136 1137 1138 1139 1140

**返回值:**

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

L
lengchangjing 已提交
1141 1142
**错误码:**

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

L
liu-ganlin 已提交
1145
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1146 1147 1148
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1149 1150 1151 1152 1153 1154
**示例:**

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

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

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

B
bi-hu 已提交
1161
### readInt8
L
liu-ganlin 已提交
1162

L
liu-ganlin 已提交
1163
readInt8(offset?: number): number
L
liu-ganlin 已提交
1164 1165 1166 1167 1168 1169 1170 1171 1172

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

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

**参数:**

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

**返回值:**

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

L
lengchangjing 已提交
1181 1182
**错误码:**

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

L
liu-ganlin 已提交
1185
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1186 1187 1188
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1189 1190 1191 1192 1193 1194
**示例:**

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

let buf = buffer.from([-1, 5]);
L
liu-ganlin 已提交
1195 1196
console.log(buf.readInt8(0).toString());	// 打印: -1
console.log(buf.readInt8(1).toString());	// 打印: 5
L
lengchangjing 已提交
1197 1198 1199

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

B
bi-hu 已提交
1202
### readInt16BE
L
liu-ganlin 已提交
1203

L
liu-ganlin 已提交
1204
readInt16BE(offset?: number): number
L
liu-ganlin 已提交
1205 1206 1207 1208 1209 1210 1211 1212 1213

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

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

**参数:**

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

**返回值:**

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

L
lengchangjing 已提交
1222 1223
**错误码:**

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

L
liu-ganlin 已提交
1226
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1227 1228 1229
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1230 1231 1232 1233 1234
**示例:**

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

L
liu-ganlin 已提交
1235 1236
let buf = buffer.from([0, 5]);
console.log(buf.readInt16BE(0).toString());	// 打印: 5
L
lengchangjing 已提交
1237 1238 1239

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

B
bi-hu 已提交
1242
### readInt16LE
L
liu-ganlin 已提交
1243

L
liu-ganlin 已提交
1244
readInt16LE(offset?: number): number
L
liu-ganlin 已提交
1245

B
bi-hu 已提交
1246
从指定的`offset`处读取有符号的小端序16位整数。
L
liu-ganlin 已提交
1247 1248 1249 1250 1251 1252 1253

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1254
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1255 1256 1257 1258 1259 1260 1261

**返回值:**

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

L
lengchangjing 已提交
1262 1263
**错误码:**

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

L
liu-ganlin 已提交
1266
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1267 1268 1269
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1270 1271 1272 1273 1274
**示例:**

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

L
liu-ganlin 已提交
1275 1276
let buf = buffer.from([0, 5]);
console.log(buf.readInt16LE(0).toString());	// 打印: 1280
L
lengchangjing 已提交
1277 1278 1279

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

B
bi-hu 已提交
1282
### readInt32BE
L
liu-ganlin 已提交
1283

L
liu-ganlin 已提交
1284
readInt32BE(offset?: number): number
L
liu-ganlin 已提交
1285

B
bi-hu 已提交
1286
从指定的`offset`处读取有符号的大端序32位整数。
L
liu-ganlin 已提交
1287 1288 1289 1290 1291 1292 1293

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1294
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1295 1296 1297 1298 1299 1300 1301

**返回值:**

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

L
lengchangjing 已提交
1302 1303
**错误码:**

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

L
liu-ganlin 已提交
1306
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1307 1308 1309
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1310 1311 1312 1313 1314 1315
**示例:**

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

let buf = buffer.from([0, 0, 0, 5]);
L
liu-ganlin 已提交
1316
console.log(buf.readInt32BE(0).toString());	// 打印: 5
L
lengchangjing 已提交
1317 1318 1319

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

B
bi-hu 已提交
1322
### readInt32LE
L
liu-ganlin 已提交
1323

L
liu-ganlin 已提交
1324
readInt32LE(offset?: number): number
L
liu-ganlin 已提交
1325

B
bi-hu 已提交
1326
从指定的`offset`处读取有符号的小端序32位整数。
L
liu-ganlin 已提交
1327 1328 1329 1330 1331 1332 1333

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1334
| offset | number | 否 | 偏移量。默认值: 0。 |
L
liu-ganlin 已提交
1335 1336 1337 1338 1339 1340 1341

**返回值:**

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

L
lengchangjing 已提交
1342 1343
**错误码:**

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

L
liu-ganlin 已提交
1346
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1347 1348 1349
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1350 1351 1352 1353 1354 1355
**示例:**

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

let buf = buffer.from([0, 0, 0, 5]);
L
liu-ganlin 已提交
1356
console.log(buf.readInt32LE(0).toString());	// 打印: 83886080
L
lengchangjing 已提交
1357 1358 1359

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

B
bi-hu 已提交
1362
### readIntBE
L
liu-ganlin 已提交
1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373

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

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1374 1375
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 读取的字节数。 |
L
liu-ganlin 已提交
1376 1377 1378 1379 1380 1381 1382 1383


**返回值:**

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

L
lengchangjing 已提交
1384 1385
**错误码:**

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

L
liu-ganlin 已提交
1388
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1389 1390 1391
| -------- | -------- |
| 10200001 | The value of "[offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
1392 1393 1394 1395 1396
**示例:**

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

L
liu-ganlin 已提交
1397
let buf = buffer.from("ab");
L
liu-ganlin 已提交
1398
let num = buf.readIntBE(0, 1);
L
liu-ganlin 已提交
1399
console.log(num.toString()); // 97
L
lengchangjing 已提交
1400 1401 1402

let buf1 = buffer.allocUninitializedFromPool(6);
buf1.writeIntBE(0x123456789011, 0, 6);
L
liu-ganlin 已提交
1403 1404 1405
```


B
bi-hu 已提交
1406
### readIntLE
L
liu-ganlin 已提交
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417

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

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1418 1419
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 读取的字节数。 |
L
liu-ganlin 已提交
1420 1421 1422 1423 1424 1425 1426 1427


**返回值:**

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

L
lengchangjing 已提交
1428 1429
**错误码:**

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

L
liu-ganlin 已提交
1432
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1433 1434 1435
| -------- | -------- |
| 10200001 | The value of "[offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
1436 1437 1438 1439 1440 1441 1442
**示例:**

```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 已提交
1443 1444 1445

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

B
bi-hu 已提交
1448
### readUInt8
L
liu-ganlin 已提交
1449

L
liu-ganlin 已提交
1450
readUInt8(offset?: number): number
L
liu-ganlin 已提交
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468

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

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

**参数:**

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


**返回值:**

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

L
lengchangjing 已提交
1469 1470
**错误码:**

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

L
liu-ganlin 已提交
1473
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1474 1475 1476
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1477 1478 1479 1480 1481 1482
**示例:**

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

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

L
lengchangjing 已提交
1486 1487
let buf1 = buffer.allocUninitializedFromPool(4);
buf1.writeUInt8(0x42);
L
liu-ganlin 已提交
1488 1489
```

B
bi-hu 已提交
1490
### readUInt16BE
L
liu-ganlin 已提交
1491

L
liu-ganlin 已提交
1492
readUInt16BE(offset?: number): number
L
liu-ganlin 已提交
1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510

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

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

**参数:**

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


**返回值:**

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

L
lengchangjing 已提交
1511 1512
**错误码:**

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

L
liu-ganlin 已提交
1515
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1516 1517 1518
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1519 1520 1521 1522 1523 1524 1525 1526
**示例:**

```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 已提交
1527 1528 1529

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

B
bi-hu 已提交
1532
### readUInt16LE
L
liu-ganlin 已提交
1533

L
liu-ganlin 已提交
1534
readUInt16LE(offset?: number): number
L
liu-ganlin 已提交
1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552

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

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

**参数:**

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


**返回值:**

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

L
lengchangjing 已提交
1553 1554
**错误码:**

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

L
liu-ganlin 已提交
1557
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1558 1559 1560
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1561 1562 1563 1564 1565 1566 1567 1568
**示例:**

```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 已提交
1569 1570 1571

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

B
bi-hu 已提交
1574
### readUInt32BE
L
liu-ganlin 已提交
1575

L
liu-ganlin 已提交
1576
readUInt32BE(offset?: number): number
L
liu-ganlin 已提交
1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594

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

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

**参数:**

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


**返回值:**

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

L
lengchangjing 已提交
1595 1596
**错误码:**

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

L
liu-ganlin 已提交
1599
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1600 1601 1602
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

L
liu-ganlin 已提交
1603 1604 1605 1606 1607 1608 1609
**示例:**

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

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

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

B
bi-hu 已提交
1615
### readUInt32LE
L
liu-ganlin 已提交
1616

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

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

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

**参数:**

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


**返回值:**

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

L
lengchangjing 已提交
1636 1637
**错误码:**

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

L
liu-ganlin 已提交
1640
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1641 1642 1643
| -------- | -------- |
| 10200001 | The value of "offset" is out of range. |

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

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

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

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

B
bi-hu 已提交
1656
### readUIntBE
L
liu-ganlin 已提交
1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667

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

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1668 1669
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要读取的字节数。 |
L
liu-ganlin 已提交
1670 1671 1672 1673 1674 1675 1676 1677


**返回值:**

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

L
lengchangjing 已提交
1678 1679
**错误码:**

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

L
liu-ganlin 已提交
1682
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1683 1684 1685
| -------- | -------- |
| 10200001 | The value of "[offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
1686 1687 1688 1689 1690 1691 1692
**示例:**

```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 已提交
1693 1694 1695

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

B
bi-hu 已提交
1698
### readUIntLE
L
liu-ganlin 已提交
1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709

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

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
liu-ganlin 已提交
1710 1711
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要读取的字节数。 |
L
liu-ganlin 已提交
1712 1713 1714 1715 1716 1717 1718 1719


**返回值:**

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

L
lengchangjing 已提交
1720 1721
**错误码:**

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

L
liu-ganlin 已提交
1724
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1725 1726 1727
| -------- | -------- |
| 10200001 | The value of "[offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
1728 1729 1730 1731 1732 1733 1734
**示例:**

```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 已提交
1735 1736 1737

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

B
bi-hu 已提交
1740
### subarray
L
liu-ganlin 已提交
1741 1742 1743

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

B
bi-hu 已提交
1744
截取当前对象指定位置的数据并返回。
L
liu-ganlin 已提交
1745 1746 1747 1748 1749 1750 1751 1752

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| start | number | 否 | 截取开始位置。 默认值: 0。 |
B
bi-hu 已提交
1753
| end | number | 否 |  截取结束位置(不包含结束位置)。 默认值: 当前对象的字节长度。 |
L
liu-ganlin 已提交
1754 1755 1756 1757 1758

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
1759
| Buffer | 返回新的Buffer对象。 |
L
liu-ganlin 已提交
1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775

**示例:**

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

B
bi-hu 已提交
1776
### swap16
L
liu-ganlin 已提交
1777 1778 1779

swap16(): Buffer

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

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


**返回值:**

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

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

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

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

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

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

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

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

B
bi-hu 已提交
1811
### swap32
L
liu-ganlin 已提交
1812 1813 1814

swap32(): Buffer

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

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


**返回值:**

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

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

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

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

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

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

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

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

B
bi-hu 已提交
1846
### swap64
L
liu-ganlin 已提交
1847 1848 1849

swap64(): Buffer

B
bi-hu 已提交
1850
将当前对象解释为无符号的64位整数数组,并交换字节顺序。
L
liu-ganlin 已提交
1851 1852 1853 1854 1855 1856 1857 1858

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


**返回值:**

| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
1859
| Buffer | 交换之后的Buffer对象。 |
L
liu-ganlin 已提交
1860

L
lengchangjing 已提交
1861 1862
**错误码:**

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

L
liu-ganlin 已提交
1865
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1866 1867 1868
| -------- | -------- |
| 10200009 | Buffer size must be a multiple of 64-bits |

L
liu-ganlin 已提交
1869 1870 1871 1872 1873 1874
**示例:**

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

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

B
bi-hu 已提交
1880
### toJSON
L
liu-ganlin 已提交
1881 1882 1883

toJSON(): Object

B
bi-hu 已提交
1884
将Buffer转为JSON并返回。
L
liu-ganlin 已提交
1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900

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


**返回值:**

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

**示例:**

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

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

B
bi-hu 已提交
1906
### toString
L
liu-ganlin 已提交
1907 1908 1909

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

B
bi-hu 已提交
1910
将当前对象中指定位置数据转成指定编码格式字符串并返回。
L
liu-ganlin 已提交
1911 1912 1913 1914 1915 1916 1917 1918 1919

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| encoding | string | 否 | 字符编码格式。 默认值: 'utf-8'。 |
| start  | number | 否 |  开始位置。 默认值: 0。 |
B
bi-hu 已提交
1920
| end  | number | 否 |  结束位置。 默认值: Buffer.length。 |
L
liu-ganlin 已提交
1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| 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
```

B
bi-hu 已提交
1941
### values
L
liu-ganlin 已提交
1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960

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 已提交
1961 1962
for (let value of buf1.values()) {
  console.log(value.toString());
L
liu-ganlin 已提交
1963 1964 1965
}
```

B
bi-hu 已提交
1966
### write
L
liu-ganlin 已提交
1967

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

B
bi-hu 已提交
1970
从Buffer对象的offset偏移写入指定编码的字符串str,写入的字节长度为length。
L
liu-ganlin 已提交
1971 1972 1973 1974 1975 1976 1977 1978 1979

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| str | string | 是 | 要写入Buffer的字符串。 |
| offset | number | 否 | 偏移量。 默认值: 0。 |
B
bi-hu 已提交
1980
| length | number | 否 | 最大字节长度。 默认值: (Buffer.length - offset)。|
L
liu-ganlin 已提交
1981
| encoding | string | 否 | 字符编码。 默认值: 'utf-8'。 |
L
liu-ganlin 已提交
1982 1983 1984 1985 1986 1987 1988 1989


**返回值:**

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

L
lengchangjing 已提交
1990 1991
**错误码:**

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

L
liu-ganlin 已提交
1994
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
1995 1996 1997
| -------- | -------- |
| 10200001 | The value of "[offset/length]" is out of range. |

L
liu-ganlin 已提交
1998 1999 2000 2001 2002 2003 2004
**示例:**

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

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

L
liu-ganlin 已提交
2008 2009
let buffer1 = buffer.alloc(10);
let length = buffer1.write('abcd', 8);
L
liu-ganlin 已提交
2010 2011
```

B
bi-hu 已提交
2012
### writeBigInt64BE
L
liu-ganlin 已提交
2013

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

B
bi-hu 已提交
2016
从Buffer对象的offset偏移写入有符号的大端序64位BigInt型数据value。
L
liu-ganlin 已提交
2017 2018 2019 2020 2021 2022 2023

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2024
| value | bigint | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2025 2026 2027 2028 2029 2030 2031 2032 2033
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2034 2035
**错误码:**

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

L
liu-ganlin 已提交
2038
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2039 2040 2041
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

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

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

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

B
bi-hu 已提交
2051
### writeBigInt64LE
L
liu-ganlin 已提交
2052

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

B
bi-hu 已提交
2055
从Buffer对象的offset偏移写入有符号的小端序64位BigInt型数据value。
L
liu-ganlin 已提交
2056 2057 2058 2059 2060 2061 2062

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2063
| value | bigint | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2064 2065 2066 2067 2068 2069 2070 2071 2072
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2073 2074
**错误码:**

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

L
liu-ganlin 已提交
2077
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2078 2079 2080
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2081 2082 2083 2084 2085 2086 2087 2088 2089
**示例:**

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

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

B
bi-hu 已提交
2090
### writeBigUInt64BE
L
liu-ganlin 已提交
2091

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

B
bi-hu 已提交
2094
从Buffer对象的offset偏移写入无符号的大端序64位BigUInt型数据value。
L
liu-ganlin 已提交
2095 2096 2097 2098 2099 2100 2101

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2102
| value | bigint | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2103 2104 2105 2106 2107 2108 2109 2110 2111
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2112 2113
**错误码:**

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

L
liu-ganlin 已提交
2116
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2117 2118 2119
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2120 2121 2122 2123 2124 2125 2126 2127 2128
**示例:**

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

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

B
bi-hu 已提交
2129
### writeBigUInt64LE
L
liu-ganlin 已提交
2130

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

B
bi-hu 已提交
2133
从Buffer对象的offset偏移写入无符号的小端序64位BigUInt型数据value。
L
liu-ganlin 已提交
2134 2135 2136 2137 2138 2139 2140

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2141
| value | bigint | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2142 2143 2144 2145 2146 2147 2148 2149 2150
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2151 2152
**错误码:**

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

L
liu-ganlin 已提交
2155
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2156 2157 2158
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2159 2160 2161 2162 2163 2164 2165 2166 2167
**示例:**

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

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

B
bi-hu 已提交
2168
### writeDoubleBE
L
liu-ganlin 已提交
2169

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

B
bi-hu 已提交
2172
从Buffer对象的offset偏移写入大端序的64位双浮点型数据value。
L
liu-ganlin 已提交
2173 2174 2175 2176 2177 2178 2179

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2180
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2181 2182 2183 2184 2185 2186 2187 2188 2189
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2190 2191
**错误码:**

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

L
liu-ganlin 已提交
2194
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2195 2196 2197
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2198 2199 2200 2201 2202 2203 2204 2205 2206
**示例:**

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

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

B
bi-hu 已提交
2207
### writeDoubleLE
L
liu-ganlin 已提交
2208

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

B
bi-hu 已提交
2211
从Buffer对象的offset偏移写入小端序的64位双浮点型数据value。
L
liu-ganlin 已提交
2212 2213 2214 2215 2216 2217 2218

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2219
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2220 2221 2222 2223 2224 2225 2226 2227 2228
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2229 2230
**错误码:**

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

L
liu-ganlin 已提交
2233
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2234 2235 2236
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2237 2238 2239 2240 2241 2242 2243 2244 2245
**示例:**

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

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

B
bi-hu 已提交
2246
### writeFloatBE
L
liu-ganlin 已提交
2247

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

B
bi-hu 已提交
2250
从Buffer对象的offset偏移写入大端序的32位浮点型数据value。
L
liu-ganlin 已提交
2251 2252 2253 2254 2255 2256 2257

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2258
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2259 2260 2261 2262 2263 2264 2265 2266 2267
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2268 2269
**错误码:**

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

L
liu-ganlin 已提交
2272
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2273 2274 2275
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2276 2277 2278 2279 2280 2281 2282 2283 2284 2285
**示例:**

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

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


B
bi-hu 已提交
2286
### writeFloatLE
L
liu-ganlin 已提交
2287

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

B
bi-hu 已提交
2290
从Buffer对象的offset偏移写入小端序的32位浮点型数据value。
L
liu-ganlin 已提交
2291 2292 2293 2294 2295 2296 2297

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2298
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2299 2300 2301 2302 2303 2304 2305 2306 2307
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2308 2309
**错误码:**

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

L
liu-ganlin 已提交
2312
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2313 2314 2315
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2316 2317 2318 2319 2320 2321 2322 2323 2324
**示例:**

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

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

B
bi-hu 已提交
2325
### writeInt8
L
liu-ganlin 已提交
2326

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

B
bi-hu 已提交
2329
从Buffer对象的offset偏移写入8位有符号整型数据value。
L
liu-ganlin 已提交
2330 2331 2332 2333 2334 2335 2336

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2337
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2338 2339 2340 2341 2342 2343 2344 2345 2346
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2347 2348
**错误码:**

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

L
liu-ganlin 已提交
2351
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2352 2353 2354
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365
**示例:**

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

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


B
bi-hu 已提交
2366
### writeInt16BE
L
liu-ganlin 已提交
2367

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

B
bi-hu 已提交
2370
从Buffer对象的offset偏移写入大端序的16位有符号整型数据value。
L
liu-ganlin 已提交
2371 2372 2373 2374 2375 2376 2377

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2378
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2379 2380 2381 2382 2383 2384 2385 2386 2387
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2388 2389
**错误码:**

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

L
liu-ganlin 已提交
2392
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2393 2394 2395
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2396 2397 2398 2399 2400 2401 2402 2403 2404 2405
**示例:**

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

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


B
bi-hu 已提交
2406
### writeInt16LE
L
liu-ganlin 已提交
2407

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

B
bi-hu 已提交
2410
从Buffer对象的offset偏移写入小端序的16位有符号整型数据value。
L
liu-ganlin 已提交
2411 2412 2413 2414 2415 2416 2417

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2418
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2419 2420 2421 2422 2423 2424 2425 2426 2427
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2428 2429
**错误码:**

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

L
liu-ganlin 已提交
2432
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2433 2434 2435
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2436 2437 2438 2439 2440 2441 2442 2443 2444
**示例:**

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

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

B
bi-hu 已提交
2445
### writeInt32BE
L
liu-ganlin 已提交
2446

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

B
bi-hu 已提交
2449
从Buffer对象的offset偏移写入大端序的32位有符号整型数据value。
L
liu-ganlin 已提交
2450 2451 2452 2453 2454 2455 2456

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2457
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2458 2459 2460 2461 2462 2463 2464 2465 2466
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2467 2468
**错误码:**

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

L
liu-ganlin 已提交
2471
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2472 2473 2474
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

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

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

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


B
bi-hu 已提交
2485
### writeInt32LE
L
liu-ganlin 已提交
2486

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

B
bi-hu 已提交
2489
从Buffer对象的offset偏移写入小端序的32位有符号整型数据value。
L
liu-ganlin 已提交
2490 2491 2492 2493 2494 2495 2496

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2497
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2498 2499 2500 2501 2502 2503 2504 2505 2506
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2507 2508
**错误码:**

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

L
liu-ganlin 已提交
2511
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2512 2513 2514
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2515 2516 2517 2518 2519 2520 2521 2522 2523
**示例:**

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

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

B
bi-hu 已提交
2524
### writeIntBE
L
liu-ganlin 已提交
2525

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

B
bi-hu 已提交
2528
从Buffer对象的offset偏移写入大端序的有符号value数据,value字节长度为byteLength。
L
liu-ganlin 已提交
2529 2530 2531 2532 2533 2534 2535

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2536
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2537 2538
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要写入的字节数。 |
L
liu-ganlin 已提交
2539 2540 2541 2542 2543 2544 2545 2546


**返回值:**

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

L
lengchangjing 已提交
2547 2548
**错误码:**

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

L
liu-ganlin 已提交
2551
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2552 2553 2554
| -------- | -------- |
| 10200001 | The value of "[value/offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
2555 2556 2557 2558 2559 2560 2561 2562 2563 2564
**示例:**

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

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


B
bi-hu 已提交
2565
### writeIntLE
L
liu-ganlin 已提交
2566

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

B
bi-hu 已提交
2569
从Buffer对象的offset偏移写入小端序的有符号value数据,value字节长度为byteLength。
L
liu-ganlin 已提交
2570 2571 2572 2573 2574 2575 2576

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2577
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2578 2579
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要写入的字节数。 |
L
liu-ganlin 已提交
2580 2581 2582 2583 2584 2585 2586 2587


**返回值:**

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

L
lengchangjing 已提交
2588 2589
**错误码:**

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

L
liu-ganlin 已提交
2592
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2593 2594 2595
| -------- | -------- |
| 10200001 | The value of "[value/offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
2596 2597 2598 2599 2600 2601 2602 2603 2604
**示例:**

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

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

B
bi-hu 已提交
2605
### writeUInt8
L
liu-ganlin 已提交
2606

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

B
bi-hu 已提交
2609
从Buffer对象的offset偏移写入8位无符号整型数据value。
L
liu-ganlin 已提交
2610 2611 2612 2613 2614 2615 2616

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2617
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2618 2619 2620 2621 2622 2623 2624 2625 2626
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2627 2628
**错误码:**

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

L
liu-ganlin 已提交
2631
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2632 2633 2634
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646
**示例:**

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

B
bi-hu 已提交
2647
### writeUInt16BE
L
liu-ganlin 已提交
2648

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

B
bi-hu 已提交
2651
从Buffer对象的offset偏移写入大端序的16位无符号整型数据value。
L
liu-ganlin 已提交
2652 2653 2654 2655 2656 2657 2658

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2659
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2660 2661 2662 2663 2664 2665 2666 2667 2668
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2669 2670
**错误码:**

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

L
liu-ganlin 已提交
2673
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2674 2675 2676
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2677 2678 2679 2680 2681 2682 2683 2684 2685 2686
**示例:**

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

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

B
bi-hu 已提交
2687
### writeUInt16LE
L
liu-ganlin 已提交
2688

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

B
bi-hu 已提交
2691
从Buffer对象的offset偏移写入小端序的16位无符号整型数据value。
L
liu-ganlin 已提交
2692 2693 2694 2695 2696 2697 2698

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2699
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2700 2701 2702 2703 2704 2705 2706 2707 2708
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2709 2710
**错误码:**

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

L
liu-ganlin 已提交
2713
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2714 2715 2716
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2717 2718 2719 2720 2721 2722 2723 2724 2725 2726
**示例:**

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

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

B
bi-hu 已提交
2727
### writeUInt32BE
L
liu-ganlin 已提交
2728

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

B
bi-hu 已提交
2731
从Buffer对象的offset偏移写入大端序的32位无符号整型数据value。
L
liu-ganlin 已提交
2732 2733 2734 2735 2736 2737 2738

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2739
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2740 2741 2742 2743 2744 2745 2746 2747 2748
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2749 2750
**错误码:**

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

L
liu-ganlin 已提交
2753
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2754 2755 2756
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

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

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

let buf = buffer.allocUninitializedFromPool(4);
buf.writeUInt32BE(0xfeedface, 0);
```

B
bi-hu 已提交
2766
### writeUInt32LE
L
liu-ganlin 已提交
2767

L
liu-ganlin 已提交
2768
writeUInt32LE(value: number, offset?: number): number
L
liu-ganlin 已提交
2769

B
bi-hu 已提交
2770
从Buffer对象的offset偏移写入小端序的32位无符号整型数据value。
L
liu-ganlin 已提交
2771 2772 2773 2774 2775 2776 2777

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2778
| value | number | 是 | 写入Buffer对象的数字。 |
L
liu-ganlin 已提交
2779 2780 2781 2782 2783 2784 2785 2786 2787
| offset | number | 否 | 偏移量。 默认值: 0。 |


**返回值:**

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

L
lengchangjing 已提交
2788 2789
**错误码:**

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

L
liu-ganlin 已提交
2792
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2793 2794 2795
| -------- | -------- |
| 10200001 | The value of "[value/offset]" is out of range. |

L
liu-ganlin 已提交
2796 2797 2798 2799 2800 2801 2802 2803 2804
**示例:**

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

let buf = buffer.allocUninitializedFromPool(4);
buf.writeUInt32LE(0xfeedface, 0);
```

B
bi-hu 已提交
2805
### writeUIntBE
L
liu-ganlin 已提交
2806

L
liu-ganlin 已提交
2807
writeUIntBE(value: number, offset: number, byteLength: number): number
L
liu-ganlin 已提交
2808

B
bi-hu 已提交
2809
从Buffer对象的offset偏移写入大端序的无符号value数据,value字节长度为byteLength。
L
liu-ganlin 已提交
2810 2811 2812 2813 2814 2815 2816

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2817
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2818 2819
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要写入的字节数。 |
L
liu-ganlin 已提交
2820 2821 2822 2823 2824 2825 2826 2827


**返回值:**

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

L
lengchangjing 已提交
2828 2829
**错误码:**

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

L
liu-ganlin 已提交
2832
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2833 2834 2835
| -------- | -------- |
| 10200001 | The value of "[value/offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
2836 2837 2838 2839 2840 2841 2842 2843 2844
**示例:**

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

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

B
bi-hu 已提交
2845
### writeUIntLE
L
liu-ganlin 已提交
2846

L
liu-ganlin 已提交
2847
writeUIntLE(value: number, offset: number, byteLength: number): number
L
liu-ganlin 已提交
2848

B
bi-hu 已提交
2849
从Buffer对象的offset偏移写入小端序的无符号value数据,value字节长度为byteLength。
L
liu-ganlin 已提交
2850 2851 2852 2853 2854 2855 2856

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
B
bi-hu 已提交
2857
| value | number | 是 | 写入Buffer的数据。 |
L
liu-ganlin 已提交
2858 2859
| offset | number | 是 | 偏移量。 默认值: 0。 |
| byteLength | number | 是 | 要写入的字节数。 |
L
liu-ganlin 已提交
2860 2861 2862 2863 2864 2865 2866 2867


**返回值:**

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

L
lengchangjing 已提交
2868 2869
**错误码:**

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

L
liu-ganlin 已提交
2872
| 错误码ID | 错误信息 |
L
lengchangjing 已提交
2873 2874 2875
| -------- | -------- |
| 10200001 | The value of "[value/offset/byteLength]" is out of range. |

L
liu-ganlin 已提交
2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890
**示例:**

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

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

## Blob

### 属性

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

L
liu-ganlin 已提交
2891
| 名称 | 类型 | 可读 | 可写 | 说明 |
L
liu-ganlin 已提交
2892 2893 2894 2895 2896 2897
| -------- | -------- | -------- | -------- | -------- |
| size | number | 是 | 否 | Blob实例的总字节大小。 |
| type | string | 是 | 否 | Blob实例的内容类型。 |

### constructor

L
liu-ganlin 已提交
2898
constructor(sources: string[] | ArrayBuffer[] | TypedArray[] | DataView[] | Blob[] , options?: Object)
L
liu-ganlin 已提交
2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912

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


**示例:**
2913 2914
```ts
import buffer from '@ohos.buffer';
L
lengchangjing 已提交
2915

2916 2917 2918
let blob = new buffer.Blob(['a', 'b', 'c']);
let blob1 = new buffer.Blob(['a', 'b', 'c'], {endings:'native', type: 'MIME'});
```
L
liu-ganlin 已提交
2919

L
liu-ganlin 已提交
2920
### arrayBuffer
L
liu-ganlin 已提交
2921 2922 2923 2924 2925 2926 2927 2928 2929 2930

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

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

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

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
2931
| Promise&lt;ArrayBuffer&gt; | Promise对象,返回包含Blob数据的ArrayBuffer。 |
L
liu-ganlin 已提交
2932 2933

**示例:**
2934 2935 2936 2937 2938 2939 2940 2941
```ts
let blob = new buffer.Blob(['a', 'b', 'c']);
let pro = blob.arrayBuffer();
pro.then(val => {
  let uintarr = new Uint8Array(val);
  console.log(uintarr.toString());
});
```
L
liu-ganlin 已提交
2942 2943 2944 2945
### slice

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

B
bi-hu 已提交
2946
创建并返回一个复制原Blob对象中指定数据长度的Blob新对象。
L
liu-ganlin 已提交
2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963

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

**参数:**

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

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

**示例:**
2964 2965 2966 2967 2968
```ts
let blob = new buffer.Blob(['a', 'b', 'c']);
let blob2 = blob.slice(0, 2);
let blob3 = blob.slice(0, 2, "MIME");
```
L
liu-ganlin 已提交
2969

L
lengchangjing 已提交
2970
### text
L
liu-ganlin 已提交
2971 2972 2973

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

B
bi-hu 已提交
2974
使用UTF8进行解码并返回一个文本。使用Promise异步回调。
L
liu-ganlin 已提交
2975 2976 2977 2978 2979 2980

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

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
B
bi-hu 已提交
2981
| Promise&lt;string&gt; | Promise对象,返回包含以UTF8解码的文本。 |
L
liu-ganlin 已提交
2982 2983

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