js-apis-net-connection.md 31.1 KB
Newer Older
Z
zengyawen 已提交
1
# 网络连接管理
2

C
clevercong 已提交
3

4 5
> **说明:**
>
Z
zengyawen 已提交
6
> 本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
7 8 9

## 导入模块

M
maosiping 已提交
10
```javascript
11 12 13 14 15 16 17
import connection from '@ohos.net.connection'
```

## connection.getDefaultNet

getDefaultNet(callback: AsyncCallback\<NetHandle>): void

Z
zengyawen 已提交
18
获取默认激活的数据网络,使用callback方式作为异步方法。
19 20 21 22 23 24 25

**需要权限**:ohos.permission.GET_NETWORK_INFO

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
26 27 28
| 参数名   | 类型                                    | 必填 | 说明       |
| -------- | --------------------------------------- | ---- | ---------- |
| callback | AsyncCallback\<[NetHandle](#nethandle)> | 是   | 回调函数。 |
29 30 31 32 33 34 35 36 37 38 39 40 41 42

**示例:**

```javascript
connection.getDefaultNet(function (error, netHandle) {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(netHandle))
})
```

## connection.getDefaultNet

getDefaultNet(): Promise\<NetHandle>

Z
zengyawen 已提交
43
获取默认激活的数据网络,使用Promise方式作为异步方法。
44 45 46 47 48 49 50

**需要权限**:ohos.permission.GET_NETWORK_INFO

**系统能力**:SystemCapability.Communication.NetManager.Core

**返回值:**

Z
zengyawen 已提交
51 52 53
| 类型                              | 说明                                  |
| --------------------------------- | ------------------------------------- |
| Promise\<[NetHandle](#nethandle)> | 以Promise形式返回默认激活的数据网络。 |
54 55 56 57 58 59 60 61 62 63 64 65 66

**示例:**

```javascript
connection.getDefaultNet().then(function (netHandle) {
    console.log(JSON.stringify(netHandle))
})
```

## connection.hasDefaultNet

hasDefaultNet(callback: AsyncCallback\<boolean>): void

Z
zengyawen 已提交
67
检查默认数据网络是否被激活,使用callback方式作为异步方法。
68 69 70 71 72

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
73 74 75
| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| callback | AsyncCallback\<boolean> | 是   | 回调函数,默认数据网络被激活返回true。 |
76 77 78 79 80 81 82 83 84 85 86 87 88 89

**示例:**

```javascript
connection.hasDefaultNet(function (error, has) {
    console.log(JSON.stringify(error))
    console.log(has)
})
```

## connection.hasDefaultNet

hasDefaultNet(): Promise\<boolean>

Z
zengyawen 已提交
90
检查默认数据网络是否被激活,使用Promise方式作为异步方法。
91 92 93 94 95

**系统能力**:SystemCapability.Communication.NetManager.Core

**返回值:**

Z
zengyawen 已提交
96 97 98
| 类型              | 说明                                            |
| ----------------- | ----------------------------------------------- |
| Promise\<boolean> | 以Promise形式返回,默认数据网络被激活返回true。 |
99 100 101 102 103 104 105 106 107

**示例:**

```javascript
connection.hasDefaultNet().then(function (has) {
    console.log(has)
})
```

C
clevercong 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
## connection.getAllNets

getAllNets(callback: AsyncCallback&lt;Array&lt;NetHandle&gt;&gt;): void

获取全部激活的数据网络列表,使用callback方式作为异步方法。

需要ohos.permission.GET_NETWORK_INFO权限。

**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callback | AsyncCallback&lt;Array&lt;[NetHandle](#nethandle)&gt;&gt; | 是 | 回调函数。 |

**示例:**

```
connection.getAllNets(function (error, nets) {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(nets))
});
```


## connection.getAllNets

getAllNets(): Promise&lt;Array&lt;NetHandle&gt;&gt;

获取全部激活的数据网络列表,使用promise方式作为异步方法。

需要ohos.permission.GET_NETWORK_INFO权限。

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;Array&lt;[NetHandle](#nethandle)&gt;&gt; | 以Promise形式返回激活的数据网络列表。 |

**示例:**

```
connection.getAllNets().then(function (nets) {
    console.log(JSON.stringify(nets))
});
```

152 153 154 155
## connection.getConnectionProperties

getConnectionProperties(netHandle: NetHandle, callback: AsyncCallback\<ConnectionProperties>): void

Z
zengyawen 已提交
156
获取netHandle对应的网络的连接信息,使用callback方式作为异步方法。
157 158 159 160 161 162 163

**需要权限**:ohos.permission.GET_NETWORK_INFO

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
164 165 166 167
| 参数名    | 类型                                                         | 必填 | 说明             |
| --------- | ------------------------------------------------------------ | ---- | ---------------- |
| netHandle | [NetHandle](#nethandle)                                      | 是   | 数据网络的句柄。 |
| callback  | AsyncCallback\<[ConnectionProperties](#connectionproperties)> | 是   | 回调函数。       |
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183

**示例:**

```javascript
connection.getDefaultNet().then(function (netHandle) {
    connection.getConnectionProperties(netHandle, function (error, info) {
        console.log(JSON.stringify(error))
        console.log(JSON.stringify(info))
    })
})
```

## connection.getConnectionProperties

getConnectionProperties(netHandle: NetHandle): Promise\<ConnectionProperties>

Z
zengyawen 已提交
184
获取netHandle对应的网络的连接信息,使用Promise方式作为异步方法。
185 186 187 188 189 190 191

**需要权限**:ohos.permission.GET_NETWORK_INFO

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
192 193 194
| 参数名    | 类型                    | 必填 | 说明             |
| --------- | ----------------------- | ---- | ---------------- |
| netHandle | [NetHandle](#nethandle) | 是   | 数据网络的句柄。 |
195 196 197

**返回值:**

Z
zengyawen 已提交
198 199 200
| 类型                                                    | 说明                              |
| ------------------------------------------------------- | --------------------------------- |
| Promise\<[ConnectionProperties](#connectionproperties)> | 以Promise形式返回网络的连接信息。 |
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215

**示例:**

```javascript
connection.getDefaultNet().then(function (netHandle) {
    connection.getConnectionProperties(netHandle).then(function (info) {
        console.log(JSON.stringify(info))
    })
})
```

## connection.getNetCapabilities

getNetCapabilities(netHandle: NetHandle, callback: AsyncCallback\<NetCapabilities>): void

Z
zengyawen 已提交
216
获取netHandle对应的网络的能力信息,使用callback方式作为异步方法。
217 218 219 220 221 222 223

**需要权限**:ohos.permission.GET_NETWORK_INFO

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
224 225 226 227
| 参数名    | 类型                                                | 必填 | 说明             |
| --------- | --------------------------------------------------- | ---- | ---------------- |
| netHandle | [NetHandle](#nethandle)                             | 是   | 数据网络的句柄。 |
| callback  | AsyncCallback\<[NetCapabilities](#netcapabilities)> | 是   | 回调函数。       |
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243

**示例:**

```javascript
connection.getDefaultNet().then(function (netHandle) {
    connection.getNetCapabilities(netHandle, function (error, info) {
        console.log(JSON.stringify(error))
        console.log(JSON.stringify(info))
    })
})
```

## connection.getNetCapabilities

getNetCapabilities(netHandle: NetHandle): Promise\<NetCapabilities>

Z
zengyawen 已提交
244
获取netHandle对应的网络的能力信息,使用Promise方式作为异步方法。
245 246 247 248 249 250 251

**需要权限**:ohos.permission.GET_NETWORK_INFO

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
252 253 254
| 参数名    | 类型                    | 必填 | 说明             |
| --------- | ----------------------- | ---- | ---------------- |
| netHandle | [NetHandle](#nethandle) | 是   | 数据网络的句柄。 |
255 256 257

**返回值:**

Z
zengyawen 已提交
258 259 260
| 类型                                          | 说明                              |
| --------------------------------------------- | --------------------------------- |
| Promise\<[NetCapabilities](#netcapabilities)> | 以Promise形式返回网络的能力信息。 |
261 262 263 264 265 266 267 268 269 270 271

**示例:**

```javascript
connection.getDefaultNet().then(function (netHandle) {
    connection.getNetCapabilities(netHandle).then(function (info) {
        console.log(JSON.stringify(info))
    })
})
```

C
clevercong 已提交
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
## connection.reportNetConnected

reportNetConnected(netHandle: NetHandle, callback: AsyncCallback&lt;void&gt;): void

报告网络状态已连接,使用callback方式作为异步方法。

需要ohos.permission.GET_NETWORK_INFO 和 ohos.permission.INTERNET权限。

**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| netHandle | [NetHandle](#nethandle) | 是 | 数据网络的句柄,参考[NetHandle](#nethandle)。 |
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数。 |

**示例:**

```
connection.getDefaultNet().then(function (netHandle) {
    connection.reportNetConnected(netHandle, function (error) {
        console.log(JSON.stringify(error))
    });
});
```


## connection.reportNetConnected

reportNetConnected(netHandle: NetHandle): Promise&lt;void&gt;

报告网络状态已连接,使用promise方式作为异步方法。

需要ohos.permission.GET_NETWORK_INFO 和 ohos.permission.INTERNET权限。

**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| netHandle | [NetHandle](#nethandle) | 是 | 数据网络的句柄,参考[NetHandle](#nethandle)。 |

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;void&gt; | 以Promise形式返回执行结果。 |

**示例:**

```
connection.getDefaultNet().then(function (netHandle) {
    connection.reportNetConnected(netHandle).then(function () {
        console.log(`report success`)
    });
});
```


## connection.reportNetDisconnected

reportNetDisconnected(netHandle: NetHandle, callback: AsyncCallback&lt;void&gt;): void

报告网络状态已断开,使用callback方式作为异步方法。

需要ohos.permission.GET_NETWORK_INFO 和 ohos.permission.INTERNET权限。

**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| netHandle | [NetHandle](#nethandle) | 是 | 数据网络的句柄,参考[NetHandle](#nethandle)。 |
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数。 |

**示例:**

```
connection.getDefaultNet().then(function (netHandle) {
    connection.reportNetDisconnected(netHandle, function (error) {
        console.log(JSON.stringify(error))
    });
});
```


## connection.reportNetDisconnected

reportNetDisconnected(netHandle: NetHandle): Promise&lt;void&gt;

报告网络状态已断开,使用promise方式作为异步方法。

需要ohos.permission.GET_NETWORK_INFO 和 ohos.permission.INTERNET权限。

**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| netHandle | [NetHandle](#nethandle) | 是 | 数据网络的句柄,参考[NetHandle](#nethandle)。 |

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;void&gt; | 以Promise形式返回执行结果。 |

**示例:**

```
connection.getDefaultNet().then(function (netHandle) {
    connection.reportNetDisconnected(netHandle).then(function () {
        console.log(`report success`)
    });
});
```

379 380 381 382
## connection.getAddressesByName

getAddressesByName(host: string, callback: AsyncCallback\<Array\<NetAddress>>): void

Z
zengyawen 已提交
383
使用默认网络解析主机名以获取所有IP地址,使用callback方式作为异步方法。
384 385 386 387 388 389 390

**需要权限**:ohos.permission.GET_NETWORK_INFO

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
391 392 393 394
| 参数名   | 类型                                              | 必填 | 说明               |
| -------- | ------------------------------------------------- | ---- | ------------------ |
| host     | string                                            | 是   | 需要解析的主机名。 |
| callback | AsyncCallback\<Array\<[NetAddress](#netaddress)>> | 是   | 回调函数。         |
395 396 397

**示例:**

C
clevercong 已提交
398 399 400 401 402
```
let host = "xxxx";
connection.getAddressesByName(host, function (error, addresses) {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(addresses))
403 404 405 406 407
})
```

## connection.getAddressesByName

C
clevercong 已提交
408
getAddressesByName(host: string): Promise\<Array\<NetAddress>>
409

Z
zengyawen 已提交
410
使用默认网络解析主机名以获取所有IP地址,使用Promise方式作为异步方法。
411 412 413 414 415 416 417

**需要权限**:ohos.permission.GET_NETWORK_INFO

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
418 419 420
| 参数名 | 类型   | 必填 | 说明               |
| ------ | ------ | ---- | ------------------ |
| host   | string | 是   | 需要解析的主机名。 |
421 422 423

**返回值:**

Z
zengyawen 已提交
424 425 426
| 类型                                        | 说明                          |
| ------------------------------------------- | ----------------------------- |
| Promise\<Array\<[NetAddress](#netaddress)>> | 以Promise形式返回所有IP地址。 |
427 428 429

**示例:**

C
clevercong 已提交
430 431 432 433
```
let host = "xxxx";
connection.getAddressesByName(host).then(function (addresses) {
    console.log(JSON.stringify(addresses))
434 435 436 437 438 439 440
})
```

## connection.createNetConnection

createNetConnection(netSpecifier?: NetSpecifier, timeout?: number): NetConnection

M
maosiping 已提交
441
获取一个netSpecifier指定的网络的句柄。
442 443 444 445 446

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
447 448 449 450
| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
| netSpecifier | [NetSpecifier](#netspecifier) | 否   | 指定网络的各项特征,不指定则关注默认网络。                   |
| timeout      | number                        | 否   | 获取netSpecifier指定的网络时的超时时间,仅netSpecifier存在时生效。 |
451 452 453

**返回值:**

Z
zengyawen 已提交
454 455 456
| 类型                            | 说明                 |
| ------------------------------- | -------------------- |
| [NetConnection](#netconnection) | 所关注的网络的句柄。 |
457 458 459 460 461

**示例:**

```javascript
// 关注默认网络
C
clevercong 已提交
462
let netConnection = connection.createNetConnection()
463 464

// 关注蜂窝网络
C
clevercong 已提交
465
let netConnectionCellular = connection.createNetConnection({
466
    netCapabilities: {
C
clevercong 已提交
467
        bearerTypes: [NetBearType.BEARER_CELLULAR]
468 469 470 471
    }
})
```

M
maosiping 已提交
472
## NetConnection
473

Z
zengyawen 已提交
474
网络连接的句柄。
475

M
maosiping 已提交
476
### on('netAvailable')
477 478 479

on(type: 'netAvailable', callback: Callback\<NetHandle>): void

C
clevercong 已提交
480
订阅网络可用事件。
481 482 483 484 485

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
486 487
| 参数名   | 类型                               | 必填 | 说明                                                         |
| -------- | ---------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
488
| type     | string                             | 是   | 订阅事件,固定为'netAvailable'。<br>netAvailable:数据网络可用事件。 |
Z
zengyawen 已提交
489
| callback | Callback\<[NetHandle](#nethandle)> | 是   | 回调函数。                                                   |
490 491 492 493

**示例:**

```javascript
C
clevercong 已提交
494
netConnection.on('netAvailable', function (data) {
495 496 497 498
    console.log(JSON.stringify(data))
})
```

M
maosiping 已提交
499
### on('netCapabilitiesChange')
500 501 502

on(type: 'netCapabilitiesChange', callback: Callback<{ netHandle: NetHandle, netCap: NetCapabilities }>): void

C
clevercong 已提交
503
订阅网络能力变化事件。
504 505 506 507 508

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
509 510
| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
511
| type     | string                                                       | 是   | 订阅事件,固定为'netCapabilitiesChange'。<br/>netCapabilitiesChange:网络能力变化事件。 |
Z
zengyawen 已提交
512
| callback | Callback<{ netHandle: [NetHandle](#nethandle), netCap: [NetCapabilities](#netcapabilities) }> | 是   | 回调函数。                                                   |
513 514 515 516

**示例:**

```javascript
C
clevercong 已提交
517
netConnection.on('netCapabilitiesChange', function (data) {
518 519 520 521
    console.log(JSON.stringify(data))
})
```

M
maosiping 已提交
522
### on('netConnectionPropertiesChange')
523 524 525

on(type: 'netConnectionPropertiesChange', callback: Callback<{ netHandle: NetHandle, connectionProperties: ConnectionProperties }>): void

C
clevercong 已提交
526
订阅网络连接信息变化事件。
527 528 529 530 531

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
532 533
| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
534
| type     | string                                                       | 是   | 订阅事件,固定为'netConnectionPropertiesChange'。<br/>netConnectionPropertiesChange:网络连接信息变化事件。 |
Z
zengyawen 已提交
535
| callback | Callback<{ netHandle: [NetHandle](#nethandle), connectionProperties: [ConnectionProperties](#connectionproperties) }> | 是   | 回调函数。                                                   |
536 537 538 539

**示例:**

```javascript
C
clevercong 已提交
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
netConnection.on('netConnectionPropertiesChange', function (data) {
    console.log(JSON.stringify(data))
})
```

### on('netBlockStatusChange')

on(type: 'netBlockStatusChange', callback: Callback&lt;{ netHandle: NetHandle, blocked: boolean }&gt;): void

订阅网络阻塞状态事件,使用callback方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 订阅事件,固定为'netBlockStatusChange'。<br/>netBlockStatusChange:网络阻塞状态事件。 |
| callback | Callback&lt;{&nbsp;netHandle:&nbsp;[NetHandle](#nethandle),&nbsp;blocked:&nbsp;boolean&nbsp;}&gt; | 是   | 回调函数。                                                   |

**示例:**

```javascript
netConnection.on('netBlockStatusChange', function (data) {
564 565 566 567
    console.log(JSON.stringify(data))
})
```

M
maosiping 已提交
568
### on('netLost')
569 570 571

on(type: 'netLost', callback: Callback\<NetHandle>): void

C
clevercong 已提交
572
订阅网络丢失事件。
573 574 575 576 577

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
578 579
| 参数名   | 类型                               | 必填 | 说明                                                         |
| -------- | ---------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
580
| type     | string                             | 是   | 订阅事件,固定为'netLost'。<br/>netLost:网络严重中断或正常断开事件。 |
Z
zengyawen 已提交
581
| callback | Callback\<[NetHandle](#nethandle)> | 是   | 回调函数。                                                   |
582 583 584 585

**示例:**

```javascript
C
clevercong 已提交
586 587
let netConnection1 = connection.createNetConnection()
netConnection1.on('netLost', function (data) {
588 589 590 591
    console.log(JSON.stringify(data))
})
```

M
maosiping 已提交
592
### on('netUnavailable')
593 594 595

on(type: 'netUnavailable', callback: Callback\<void>): void

C
clevercong 已提交
596
订阅网络不可用事件。
597 598 599 600 601

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
602 603
| 参数名   | 类型            | 必填 | 说明                                                         |
| -------- | --------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
604
| type     | string          | 是   | 订阅事件,固定为'netUnavailable'。<br/>netUnavailable:网络不可用事件。 |
Z
zengyawen 已提交
605
| callback | Callback\<void> | 是   | 回调函数。                                                   |
606 607 608 609

**示例:**

```javascript
C
clevercong 已提交
610
netConnection.on('netUnavailable', function (data) {
611 612 613 614
    console.log(JSON.stringify(data))
})
```

M
maosiping 已提交
615
### register
616 617 618

register(callback: AsyncCallback\<void>): void

C
clevercong 已提交
619
订阅指定网络状态变化的通知。
620 621 622 623 624 625 626

**需要权限**:ohos.permission.GET_NETWORK_INFO

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
627 628 629
| 参数名   | 类型                 | 必填 | 说明       |
| -------- | -------------------- | ---- | ---------- |
| callback | AsyncCallback\<void> | 是   | 回调函数。 |
630 631 632 633

**示例:**

```javascript
C
clevercong 已提交
634
netConnection.register(function (error) {
635 636 637 638
    console.log(JSON.stringify(error))
})
```

M
maosiping 已提交
639
### unregister
640 641 642

unregister(callback: AsyncCallback\<void>): void

C
clevercong 已提交
643
取消订阅默认网络状态变化的通知。
644 645 646 647 648

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
649 650 651
| 参数名   | 类型                 | 必填 | 说明       |
| -------- | -------------------- | ---- | ---------- |
| callback | AsyncCallback\<void> | 是   | 回调函数。 |
652 653 654 655

**示例:**

```javascript
C
clevercong 已提交
656
netConnection.unregister(function (error) {
657 658 659 660
    console.log(JSON.stringify(error))
})
```

M
maosiping 已提交
661
## NetHandle
662

Z
zengyawen 已提交
663
数据网络的句柄。
664

Z
zengyawen 已提交
665 666 667 668 669 670 671
在调用NetHandle的方法之前,需要先获取NetHandle对象。

### 属性

| 变量  | 类型   | 说明                      |
| ----- | ------ | ------------------------- |
| netId | number | 网络ID,必须大于等于100。 |
672

C
clevercong 已提交
673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
### bindSocket

bindSocket(socketParam: TCPSocket | UDPSocket, callback: AsyncCallback&lt;void&gt;): void

将TCPSocket或UDPSocket绑定到当前网络,使用callback方式作为异步方法。

**参数:**
| 参数名      | 类型                      | 必填 | 说明             |
| ----------- | ------------------------- | ---- | ---------------- |
| socketParam | TCPSocket \| UDPSocket    | 是   | TCPSocket或UDPSocket对象。 |
| callback    | AsyncCallback&lt;void&gt; | 是   | 回调函数。       |

**示例:**

```
// 绑定TCPSocket
connection.getDefaultNet().then(function (netHandle) {
    let tcpSocket = socket.constructTCPSocketInstance()
    netHandle.bindSocket(tcpSocket, (function (error) {
        console.log(JSON.stringify(error))
    }))
})
// 绑定UDPSocket
connection.getDefaultNet().then(function (netHandle) {
    let udpSocket = socket.constructUDPSocketInstance()
    netHandle.bindSocket(udpSocket, (function (error) {
        console.log(JSON.stringify(error))
    }))
})
```


### bindSocket

bindSocket(socketParam: TCPSocket | UDPSocket): Promise&lt;void&gt;

将TCPSocket或UDPSocket绑定到当前网络,使用promise方式作为异步方法。

**参数:**
| 参数名      | 类型                                                         | 必填 | 说明                                                         |
| ----------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| socketParam | TCPSocket \| UDPSocket    | 是   | TCPSocket或UDPSocket对象。 |

**返回值:**
| 类型                | 说明                        |
| ------------------- | --------------------------- |
| Promise&lt;void&gt; | 以Promise形式返回执行结果。 |

**示例:**

```
// 绑定TCPSocket
connection.getDefaultNet().then(function (netHandle) {
    let tcpSocket = socket.constructTCPSocketInstance()
    netHandle.bindSocket(tcpSocket).then(function () {
        console.log("bind socket success")
    })
})
// 绑定UDPSocket
connection.getDefaultNet().then(function (netHandle) {
    let udpSocket = socket.constructUDPSocketInstance()
    netHandle.bindSocket(udpSocket).then(function () {
        console.log("bind socket success")
    })
})
```

M
maosiping 已提交
740
### getAddressesByName
741 742 743

getAddressesByName(host: string, callback: AsyncCallback\<Array\<NetAddress>>): void

Z
zengyawen 已提交
744
使用对应网络解析主机名以获取所有IP地址,使用callback方式作为异步方法。
745 746 747 748 749

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
750 751 752 753
| 参数名   | 类型                                              | 必填 | 说明               |
| -------- | ------------------------------------------------- | ---- | ------------------ |
| host     | string                                            | 是   | 需要解析的主机名。 |
| callback | AsyncCallback\<Array\<[NetAddress](#netaddress)>> | 是   | 回调函数           |
754 755 756 757 758

**示例:**

```javascript
connection.getDefaultNet().then(function (netHandle) {
C
clevercong 已提交
759 760
    let host = "xxxx";
    netHandle.getAddressesByName(host, function (error, addresses) {
761
        console.log(JSON.stringify(error))
C
clevercong 已提交
762
        console.log(JSON.stringify(addresses))
763 764 765 766
    })
})
```

M
maosiping 已提交
767
### getAddressesByName
768 769 770

getAddressesByName(netHandle: NetHandle): Promise\<Array\<NetAddress>>

Z
zengyawen 已提交
771
使用对应网络解析主机名以获取所有IP地址,使用Promise方式作为异步方法。
772 773 774 775 776

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
777 778 779
| 参数名 | 类型   | 必填 | 说明               |
| ------ | ------ | ---- | ------------------ |
| host   | string | 是   | 需要解析的主机名。 |
780 781 782

**返回值:**

Z
zengyawen 已提交
783 784 785
| 类型                                        | 说明                          |
| ------------------------------------------- | ----------------------------- |
| Promise\<Array\<[NetAddress](#netaddress)>> | 以Promise形式返回所有IP地址。 |
786 787 788 789 790

**示例:**

```javascript
connection.getDefaultNet().then(function (netHandle) {
C
clevercong 已提交
791 792 793
    let host = "xxxx";
    netHandle.getAddressesByName(host).then(function (addresses) {
        console.log(JSON.stringify(addresses))
794 795 796 797
    })
})
```

M
maosiping 已提交
798
### getAddressByName
799 800 801

getAddressByName(host: string, callback: AsyncCallback\<NetAddress>): void

Z
zengyawen 已提交
802
使用对应网络解析主机名以获取第一个IP地址,使用callback方式作为异步方法。
803 804 805 806 807

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
808 809 810 811
| 参数名   | 类型                                      | 必填 | 说明               |
| -------- | ----------------------------------------- | ---- | ------------------ |
| host     | string                                    | 是   | 需要解析的主机名。 |
| callback | AsyncCallback\<[NetAddress](#netaddress)> | 是   | 回调函数。         |
812 813 814 815 816

**示例:**

```javascript
connection.getDefaultNet().then(function (netHandle) {
C
clevercong 已提交
817 818
    let host = "xxxx";
    netHandle.getAddressByName(host, function (error, address) {
819
        console.log(JSON.stringify(error))
C
clevercong 已提交
820
        console.log(JSON.stringify(address))
821 822 823 824
    })
})
```

M
maosiping 已提交
825
### getAddressByName
826 827 828

getAddressByName(netHandle: NetHandle): Promise\<NetAddress>

Z
zengyawen 已提交
829
使用对应网络解析主机名以获取第一个IP地址,使用Promise方式作为异步方法。
830 831 832 833 834

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
835 836 837
| 参数名 | 类型   | 必填 | 说明               |
| ------ | ------ | ---- | ------------------ |
| host   | string | 是   | 需要解析的主机名。 |
838 839 840

**返回值:**

Z
zengyawen 已提交
841 842 843
| 类型                                | 说明                            |
| ----------------------------------- | ------------------------------- |
| Promise\<[NetAddress](#netaddress)> | 以Promise形式返回第一个IP地址。 |
844 845 846 847 848

**示例:**

```javascript
connection.getDefaultNet().then(function (netHandle) {
C
clevercong 已提交
849 850 851
    let host = "xxxx";
    netHandle.getAddressByName(host).then(function (address) {
        console.log(JSON.stringify(address))
852 853 854 855
    })
})
```

M
maosiping 已提交
856
## NetSpecifier
857

Z
zengyawen 已提交
858
提供承载数据网络能力的实例。
859

Z
zengyawen 已提交
860 861 862 863
| 变量                    | 类型                                | 说明                                                         |
| ----------------------- | ----------------------------------- | ------------------------------------------------------------ |
| netCapabilities         | [NetCapabilities](#netcapabilities) | 存储数据网络的传输能力和承载类型。                           |
| bearerPrivateIdentifier | string                              | 网络标识符,WIFI网络的标识符是"wifi",蜂窝网络的标识符是"slot0"(对应SIM卡1)。 |
864

M
maosiping 已提交
865
## NetCapabilities
866

M
maosiping 已提交
867
网络的能力集。
868

Z
zengyawen 已提交
869 870 871 872 873 874
| 变量                  | 类型                               | 说明                     |
| --------------------- | ---------------------------------- | ------------------------ |
| linkUpBandwidthKbps   | number                             | 上行(设备到网络)带宽。 |
| linkDownBandwidthKbps | number                             | 下行(网络到设备)带宽。 |
| networkCap            | Array<[NetCap](#netcap)>           | 网络具体能力。           |
| bearerTypes           | Array<[NetBearType](#netbearType)> | 网络类型。               |
875

M
maosiping 已提交
876
## NetCap
877

M
maosiping 已提交
878
网络具体能力。
879

Z
zengyawen 已提交
880 881
| 变量                     | 值   | 说明                   |
| ------------------------ | ---- | ---------------------- |
C
clevercong 已提交
882 883
| NET_CAPABILITY_MMS | 0 | 表示网络可以访问运营商的MMSC(Multimedia&nbsp;Message&nbsp;Service,多媒体短信服务)发送和接收彩信。 |
| NET_CAPABILITY_NOT_METERED | 11 | 表示网络流量未被计费。 |
Z
zengyawen 已提交
884
| NET_CAPABILITY_INTERNET  | 12   | 网络可以访问Internet。 |
C
clevercong 已提交
885
| NET_CAPABILITY_NOT_VPN | 15 | 表示网络不使用VPN(Virtual&nbsp;Private&nbsp;Network,虚拟专用网络)。 |
Z
zengyawen 已提交
886
| NET_CAPABILITY_VALIDATED | 16   | 网络可用。             |
887

M
maosiping 已提交
888
## NetBearType
889

M
maosiping 已提交
890
网络类型。
891

Z
zengyawen 已提交
892 893 894 895
| 变量            | 值   | 说明        |
| --------------- | ---- | ----------- |
| BEARER_CELLULAR | 0    | 蜂窝网络。  |
| BEARER_WIFI     | 1    | Wi-Fi网络。 |
C
clevercong 已提交
896
| BEARER_ETHERNET | 3 | 以太网网络。 |
897

M
maosiping 已提交
898
## ConnectionProperties
899

M
maosiping 已提交
900
网络连接信息。
901

Z
zengyawen 已提交
902 903 904 905 906 907
| 变量          | 类型                               | 说明             |
| ------------- | ---------------------------------- | ---------------- |
| interfaceName | string                             | 网卡名称。       |
| domains       | string                             | 所属域,默认""。 |
| linkAddresses | Array<[LinkAddress](#linkaddress)> | 链路信息。       |
| routes        | Array<[RouteInfo](#routeinfo)>     | 路由信息。       |
C
clevercong 已提交
908
| dnses | Array&lt;[NetAddress](#netaddress)&gt; | 网络地址,参考[NetAddress](#netaddress)。 |
Z
zengyawen 已提交
909
| mtu           | number                             | 最大传输单元。   |
910

M
maosiping 已提交
911
## LinkAddress
912

M
maosiping 已提交
913
网络链路信息。
914

Z
zengyawen 已提交
915 916 917 918
| 变量         | 类型                      | 说明                 |
| ------------ | ------------------------- | -------------------- |
| address      | [NetAddress](#netaddress) | 链路地址。           |
| prefixLength | number                    | 链路地址前缀的长度。 |
919

M
maosiping 已提交
920
## RouteInfo
921

M
maosiping 已提交
922
网络路由信息。
923

Z
zengyawen 已提交
924 925 926 927 928 929 930
| 变量           | 类型                        | 说明             |
| -------------- | --------------------------- | ---------------- |
| interface      | string                      | 网卡名称。       |
| destination    | [LinkAddress](#linkaddress) | 目的地址。       |
| gateway        | [NetAddress](#netaddress)   | 网关地址。       |
| hasGateway     | boolean                     | 是否有网关。     |
| isDefaultRoute | boolean                     | 是否为默认路由。 |
931

M
maosiping 已提交
932
## NetAddress
933

Z
zengyawen 已提交
934
网络地址。
935

Z
zengyawen 已提交
936 937 938 939 940
| 变量    | 类型   | 说明                           |
| ------- | ------ | ------------------------------ |
| address | string | 地址。                         |
| family  | number | IPv4 = 1,IPv6 = 2,默认IPv4。 |
| port    | number | 端口,取值范围\[0, 65535]。    |