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

C
clevercong 已提交
3
网络连接管理提供管理网络一些基础能力,包括获取默认激活的数据网络、获取所有激活数据网络列表、开启关闭飞行模式、获取网络能力信息等功能。
C
clevercong 已提交
4

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

## 导入模块

Z
zengyawen 已提交
11
```js
12 13 14 15 16 17 18
import connection from '@ohos.net.connection'
```

## connection.getDefaultNet

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

M
maosiping 已提交
19
获取默认激活的数据网络,使用callback方式作为异步方法。可以使用[getNetCapabilities](#connectiongetnetcapabilities)去获取网络的类型、拥有的能力等信息。
20 21 22 23 24 25 26

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

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

**参数:**

Z
zengyawen 已提交
27 28 29
| 参数名   | 类型                                    | 必填 | 说明       |
| -------- | --------------------------------------- | ---- | ---------- |
| callback | AsyncCallback\<[NetHandle](#nethandle)> | 是   | 回调函数。 |
30 31 32

**示例:**

Z
zengyawen 已提交
33
```js
34 35 36 37 38 39 40 41 42 43
connection.getDefaultNet(function (error, netHandle) {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(netHandle))
})
```

## connection.getDefaultNet

getDefaultNet(): Promise\<NetHandle>

M
maosiping 已提交
44
获取默认激活的数据网络,使用Promise方式作为异步方法。可以使用[getNetCapabilities](#connectiongetnetcapabilities)去获取网络的类型、拥有的能力等信息。
45 46 47 48 49 50 51

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

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

**返回值:**

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

**示例:**

Z
zengyawen 已提交
58
```js
59 60 61 62 63
connection.getDefaultNet().then(function (netHandle) {
    console.log(JSON.stringify(netHandle))
})
```

L
liyufan 已提交
64
## connection.getDefaultNetSync<sup>9+</sup>
F
fuchao 已提交
65 66 67

getDefaultNetSync(): NetHandle;

M
maosiping 已提交
68
使用同步方法获取默认激活的数据网络。可以使用[getNetCapabilities](#connectiongetnetcapabilities)去获取网络的类型、拥有的能力等信息。
F
fuchao 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85

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

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

**返回值:**

| 类型      | 说明                               |
| --------- | ---------------------------------- |
| NetHandle | 以同步方式返回默认激活的数据网络。 |

**示例:**

```js
let netHandle = connection.getDefaultNetSync();
```

86 87 88 89
## connection.hasDefaultNet

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

M
maosiping 已提交
90
检查默认数据网络是否被激活,使用callback方式作为异步方法。如果有默认数据网路,可以使用[getDefaultNet](#connectiongetdefaultnet)去获取。
91

F
fuchao 已提交
92 93
**需要权限**:ohos.permission.GET_NETWORK_INFO

94 95 96 97
**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
98 99 100
| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| callback | AsyncCallback\<boolean> | 是   | 回调函数,默认数据网络被激活返回true。 |
101 102 103

**示例:**

Z
zengyawen 已提交
104
```js
105 106
connection.hasDefaultNet(function (error, has) {
    console.log(JSON.stringify(error))
C
clevercong 已提交
107
    console.log('has: ' + has)
108 109 110 111 112 113 114
})
```

## connection.hasDefaultNet

hasDefaultNet(): Promise\<boolean>

M
maosiping 已提交
115
检查默认数据网络是否被激活,使用Promise方式作为异步方法。如果有默认数据网路,可以使用[getDefaultNet](#connectiongetdefaultnet)去获取。
116

F
fuchao 已提交
117 118
**需要权限**:ohos.permission.GET_NETWORK_INFO

119 120 121 122
**系统能力**:SystemCapability.Communication.NetManager.Core

**返回值:**

Z
zengyawen 已提交
123 124 125
| 类型              | 说明                                            |
| ----------------- | ----------------------------------------------- |
| Promise\<boolean> | 以Promise形式返回,默认数据网络被激活返回true。 |
126 127 128

**示例:**

Z
zengyawen 已提交
129
```js
130
connection.hasDefaultNet().then(function (has) {
C
clevercong 已提交
131
    console.log('has: ' + has)
132 133 134
})
```

C
clevercong 已提交
135 136 137 138
## connection.getAllNets

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

139
获取所有处于连接状态的网络列表,使用callback方式作为异步方法。
C
clevercong 已提交
140

C
clevercong 已提交
141 142 143
**需要权限**:ohos.permission.GET_NETWORK_INFO

**系统能力**:SystemCapability.Communication.NetManager.Core
C
clevercong 已提交
144 145

**参数:**
146

C
clevercong 已提交
147 148 149 150 151 152
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callback | AsyncCallback&lt;Array&lt;[NetHandle](#nethandle)&gt;&gt; | 是 | 回调函数。 |

**示例:**

Z
zengyawen 已提交
153
```js
C
clevercong 已提交
154 155 156 157 158 159 160 161 162 163 164
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;

165
获取所有处于连接状态的网络列表,使用Promise方式作为异步方法。
C
clevercong 已提交
166

C
clevercong 已提交
167 168 169
**需要权限**:ohos.permission.GET_NETWORK_INFO

**系统能力**:SystemCapability.Communication.NetManager.Core
C
clevercong 已提交
170 171

**返回值:**
172

C
clevercong 已提交
173 174 175 176 177 178
| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;Array&lt;[NetHandle](#nethandle)&gt;&gt; | 以Promise形式返回激活的数据网络列表。 |

**示例:**

Z
zengyawen 已提交
179
```js
C
clevercong 已提交
180 181 182 183 184
connection.getAllNets().then(function (nets) {
    console.log(JSON.stringify(nets))
});
```

185 186 187 188
## connection.getConnectionProperties

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

Z
zengyawen 已提交
189
获取netHandle对应的网络的连接信息,使用callback方式作为异步方法。
190 191 192 193 194 195 196

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

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

**参数:**

Z
zengyawen 已提交
197 198 199 200
| 参数名    | 类型                                                         | 必填 | 说明             |
| --------- | ------------------------------------------------------------ | ---- | ---------------- |
| netHandle | [NetHandle](#nethandle)                                      | 是   | 数据网络的句柄。 |
| callback  | AsyncCallback\<[ConnectionProperties](#connectionproperties)> | 是   | 回调函数。       |
201 202 203

**示例:**

Z
zengyawen 已提交
204
```js
205 206 207 208 209 210 211 212 213 214 215 216
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 已提交
217
获取netHandle对应的网络的连接信息,使用Promise方式作为异步方法。
218 219 220 221 222 223 224

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

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

**参数:**

Z
zengyawen 已提交
225 226 227
| 参数名    | 类型                    | 必填 | 说明             |
| --------- | ----------------------- | ---- | ---------------- |
| netHandle | [NetHandle](#nethandle) | 是   | 数据网络的句柄。 |
228 229 230

**返回值:**

Z
zengyawen 已提交
231 232 233
| 类型                                                    | 说明                              |
| ------------------------------------------------------- | --------------------------------- |
| Promise\<[ConnectionProperties](#connectionproperties)> | 以Promise形式返回网络的连接信息。 |
234 235 236

**示例:**

Z
zengyawen 已提交
237
```js
238 239 240 241 242 243 244 245 246 247 248
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 已提交
249
获取netHandle对应的网络的能力信息,使用callback方式作为异步方法。
250 251 252 253 254 255 256

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

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

**参数:**

Z
zengyawen 已提交
257 258 259 260
| 参数名    | 类型                                                | 必填 | 说明             |
| --------- | --------------------------------------------------- | ---- | ---------------- |
| netHandle | [NetHandle](#nethandle)                             | 是   | 数据网络的句柄。 |
| callback  | AsyncCallback\<[NetCapabilities](#netcapabilities)> | 是   | 回调函数。       |
261 262 263

**示例:**

Z
zengyawen 已提交
264
```js
265 266 267 268 269 270 271 272 273 274 275 276
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 已提交
277
获取netHandle对应的网络的能力信息,使用Promise方式作为异步方法。
278 279 280 281 282 283 284

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

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

**参数:**

Z
zengyawen 已提交
285 286 287
| 参数名    | 类型                    | 必填 | 说明             |
| --------- | ----------------------- | ---- | ---------------- |
| netHandle | [NetHandle](#nethandle) | 是   | 数据网络的句柄。 |
288 289 290

**返回值:**

Z
zengyawen 已提交
291 292 293
| 类型                                          | 说明                              |
| --------------------------------------------- | --------------------------------- |
| Promise\<[NetCapabilities](#netcapabilities)> | 以Promise形式返回网络的能力信息。 |
294 295 296

**示例:**

Z
zengyawen 已提交
297
```js
298 299 300 301 302 303 304
connection.getDefaultNet().then(function (netHandle) {
    connection.getNetCapabilities(netHandle).then(function (info) {
        console.log(JSON.stringify(info))
    })
})
```

L
liyufan 已提交
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
## connection.isDefaultNetMetered<sup>9+</sup>

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

检查当前网络上的数据流量使用是否被计量,使用callback方式作为异步方法。

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

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| callback | AsyncCallback\<boolean> | 是   | 回调函数,当前网络上的数据流量使用被计量返回true。 |

**示例:**

```js
connection.isDefaultNetMetered(function (error, has) {
    console.log(JSON.stringify(error))
    console.log('has: ' + has)
})
```

## connection.isDefaultNetMetered<sup>9+</sup>

isDefaultNetMetered(): Promise\<boolean>

检查当前网络上的数据流量使用是否被计量,使用Promise方式作为异步方法。

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

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

**返回值:**

| 类型              | 说明                                            |
| ----------------- | ----------------------------------------------- |
| Promise\<boolean> | 以Promise形式返回,当前网络上的数据流量使用被计量true。 |

**示例:**

```js
connection.isDefaultNetMetered().then(function (has) {
    console.log('has: ' + has)
})
```

C
clevercong 已提交
354 355 356 357
## connection.reportNetConnected

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

358
向网络管理报告网络处于可用状态,调用此接口说明应用程序认为网络的可用性(ohos.net.connection.NetCap.NET_CAPABILITY_VAILDATED)与网络管理不一致。
359
使用callback方式作为异步方法。
C
clevercong 已提交
360

C
clevercong 已提交
361 362 363
**需要权限**:ohos.permission.GET_NETWORK_INFO 和 ohos.permission.INTERNET

**系统能力**:SystemCapability.Communication.NetManager.Core
C
clevercong 已提交
364 365

**参数:**
366

C
clevercong 已提交
367 368 369 370 371 372 373
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| netHandle | [NetHandle](#nethandle) | 是 | 数据网络的句柄,参考[NetHandle](#nethandle)。 |
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数。 |

**示例:**

Z
zengyawen 已提交
374
```js
C
clevercong 已提交
375 376 377 378 379 380 381 382 383 384 385 386
connection.getDefaultNet().then(function (netHandle) {
    connection.reportNetConnected(netHandle, function (error) {
        console.log(JSON.stringify(error))
    });
});
```


## connection.reportNetConnected

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

387
向网络管理报告网络处于可用状态,调用此接口说明应用程序认为网络的可用性(ohos.net.connection.NetCap.NET_CAPABILITY_VAILDATED)与网络管理不一致。
388
使用Promise方式作为异步方法。
C
clevercong 已提交
389

C
clevercong 已提交
390 391 392
**需要权限**:ohos.permission.GET_NETWORK_INFO 和 ohos.permission.INTERNET

**系统能力**:SystemCapability.Communication.NetManager.Core
C
clevercong 已提交
393 394

**参数:**
395

C
clevercong 已提交
396 397 398 399 400 401 402
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| netHandle | [NetHandle](#nethandle) | 是 | 数据网络的句柄,参考[NetHandle](#nethandle)。 |

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
403
| Promise&lt;void&gt; | 无返回值的Promise对象。 |
C
clevercong 已提交
404 405 406

**示例:**

Z
zengyawen 已提交
407
```js
C
clevercong 已提交
408 409 410 411 412 413 414 415 416 417 418 419
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

420
向网络管理报告网络处于不可用状态,调用此接口说明应用程序认为网络的可用性(ohos.net.connection.NetCap.NET_CAPABILITY_VAILDATED)与网络管理不一致。
421
使用callback方式作为异步方法。
C
clevercong 已提交
422

C
clevercong 已提交
423 424 425
**需要权限**:ohos.permission.GET_NETWORK_INFO 和 ohos.permission.INTERNET

**系统能力**:SystemCapability.Communication.NetManager.Core
C
clevercong 已提交
426 427

**参数:**
428

C
clevercong 已提交
429 430 431 432 433 434 435
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| netHandle | [NetHandle](#nethandle) | 是 | 数据网络的句柄,参考[NetHandle](#nethandle)。 |
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数。 |

**示例:**

Z
zengyawen 已提交
436
```js
C
clevercong 已提交
437 438 439 440 441 442 443 444 445 446 447 448
connection.getDefaultNet().then(function (netHandle) {
    connection.reportNetDisconnected(netHandle, function (error) {
        console.log(JSON.stringify(error))
    });
});
```


## connection.reportNetDisconnected

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

449
向网络管理报告网络处于不可用状态,调用此接口说明应用程序认为网络的可用性(ohos.net.connection.NetCap.NET_CAPABILITY_VAILDATED)与网络管理不一致。
450
使用Promise方式作为异步方法。
C
clevercong 已提交
451

C
clevercong 已提交
452 453 454
**需要权限**:ohos.permission.GET_NETWORK_INFO 和 ohos.permission.INTERNET

**系统能力**:SystemCapability.Communication.NetManager.Core
C
clevercong 已提交
455 456

**参数:**
457

C
clevercong 已提交
458 459 460 461 462 463 464
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| netHandle | [NetHandle](#nethandle) | 是 | 数据网络的句柄,参考[NetHandle](#nethandle)。 |

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
465
| Promise&lt;void&gt; | 无返回值的Promise对象。 |
C
clevercong 已提交
466 467 468

**示例:**

Z
zengyawen 已提交
469
```js
C
clevercong 已提交
470 471 472 473 474 475 476
connection.getDefaultNet().then(function (netHandle) {
    connection.reportNetDisconnected(netHandle).then(function () {
        console.log(`report success`)
    });
});
```

477 478 479 480
## connection.getAddressesByName

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

Z
zengyawen 已提交
481
使用默认网络解析主机名以获取所有IP地址,使用callback方式作为异步方法。
482 483 484 485 486 487 488

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

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

**参数:**

Z
zengyawen 已提交
489 490 491 492
| 参数名   | 类型                                              | 必填 | 说明               |
| -------- | ------------------------------------------------- | ---- | ------------------ |
| host     | string                                            | 是   | 需要解析的主机名。 |
| callback | AsyncCallback\<Array\<[NetAddress](#netaddress)>> | 是   | 回调函数。         |
493 494 495

**示例:**

Z
zengyawen 已提交
496
```js
C
clevercong 已提交
497 498 499 500
let host = "xxxx";
connection.getAddressesByName(host, function (error, addresses) {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(addresses))
501 502 503 504 505
})
```

## connection.getAddressesByName

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

Z
zengyawen 已提交
508
使用默认网络解析主机名以获取所有IP地址,使用Promise方式作为异步方法。
509 510 511 512 513 514 515

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

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

**参数:**

Z
zengyawen 已提交
516 517 518
| 参数名 | 类型   | 必填 | 说明               |
| ------ | ------ | ---- | ------------------ |
| host   | string | 是   | 需要解析的主机名。 |
519 520 521

**返回值:**

Z
zengyawen 已提交
522 523 524
| 类型                                        | 说明                          |
| ------------------------------------------- | ----------------------------- |
| Promise\<Array\<[NetAddress](#netaddress)>> | 以Promise形式返回所有IP地址。 |
525 526 527

**示例:**

Z
zengyawen 已提交
528
```js
C
clevercong 已提交
529 530 531
let host = "xxxx";
connection.getAddressesByName(host).then(function (addresses) {
    console.log(JSON.stringify(addresses))
532 533 534
})
```

C
clevercong 已提交
535 536 537 538 539 540 541

## connection.enableAirplaneMode

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

开启飞行模式,使用callback方式作为异步方法。

L
liyufan 已提交
542
**系统接口**:此接口为系统接口。
C
clevercong 已提交
543

C
clevercong 已提交
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名   | 类型                                              | 必填 | 说明               |
| -------- | ------------------------------------------------- | ---- | ------------------ |
| callback | AsyncCallback\<void> | 是   | 回调函数。         |

**示例:**

```js
connection.enableAirplaneMode(function (error) {
    console.log(JSON.stringify(error))
})
```

## connection.enableAirplaneMode

enableAirplaneMode(): Promise\<void>

开启飞行模式,使用Promise方式作为异步方法。

L
liyufan 已提交
566
**系统接口**:此接口为系统接口。
C
clevercong 已提交
567

C
clevercong 已提交
568 569 570 571 572 573
**系统能力**:SystemCapability.Communication.NetManager.Core

**返回值:**

| 类型                                        | 说明                          |
| ------------------------------------------- | ----------------------------- |
574
| Promise\<void> | 无返回值的Promise对象。 |
C
clevercong 已提交
575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590

**示例:**

```js
connection.enableAirplaneMode().then(function (error) {
    console.log(JSON.stringify(error))
})
```


## connection.disableAirplaneMode

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

关闭飞行模式,使用callback方式作为异步方法。

L
liyufan 已提交
591
**系统接口**:此接口为系统接口。
C
clevercong 已提交
592

C
clevercong 已提交
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名   | 类型                                              | 必填 | 说明               |
| -------- | ------------------------------------------------- | ---- | ------------------ |
| callback | AsyncCallback\<void> | 是   | 回调函数。         |

**示例:**

```js
connection.disableAirplaneMode(function (error) {
    console.log(JSON.stringify(error))
})
```

## connection.disableAirplaneMode

disableAirplaneMode(): Promise\<void>

关闭飞行模式,使用Promise方式作为异步方法。

L
liyufan 已提交
615
**系统接口**:此接口为系统接口。
C
clevercong 已提交
616

C
clevercong 已提交
617 618 619 620 621 622
**系统能力**:SystemCapability.Communication.NetManager.Core

**返回值:**

| 类型                                        | 说明                          |
| ------------------------------------------- | ----------------------------- |
623
| Promise\<void> | 无返回值的Promise对象。 |
C
clevercong 已提交
624 625 626 627 628 629 630 631 632 633

**示例:**

```js
connection.disableAirplaneMode().then(function (error) {
    console.log(JSON.stringify(error))
})
```


634 635 636 637
## connection.createNetConnection

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

638
返回一个NetConnection对象,netSpecifier指定关注的网络的各项特征,timeout是超时时间(单位是毫秒),netSpecifier是timeout的必要条件,两者都没有则表示关注默认网络。
639 640 641 642 643

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

**参数:**

Z
zengyawen 已提交
644 645 646 647
| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
| netSpecifier | [NetSpecifier](#netspecifier) | 否   | 指定网络的各项特征,不指定则关注默认网络。                   |
| timeout      | number                        | 否   | 获取netSpecifier指定的网络时的超时时间,仅netSpecifier存在时生效。 |
648 649 650

**返回值:**

Z
zengyawen 已提交
651 652 653
| 类型                            | 说明                 |
| ------------------------------- | -------------------- |
| [NetConnection](#netconnection) | 所关注的网络的句柄。 |
654 655 656

**示例:**

Z
zengyawen 已提交
657
```js
658
// 关注默认网络
C
clevercong 已提交
659
let netConnection = connection.createNetConnection()
660 661

// 关注蜂窝网络
C
clevercong 已提交
662
let netConnectionCellular = connection.createNetConnection({
663
    netCapabilities: {
C
clevercong 已提交
664
        bearerTypes: [connection.NetBearType.BEARER_CELLULAR]
665 666 667 668
    }
})
```

M
maosiping 已提交
669
## NetConnection
670

Z
zengyawen 已提交
671
网络连接的句柄。
672

M
maosiping 已提交
673
### on('netAvailable')
674 675 676

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

C
clevercong 已提交
677
订阅网络可用事件。
678 679 680 681 682

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

**参数:**

Z
zengyawen 已提交
683 684
| 参数名   | 类型                               | 必填 | 说明                                                         |
| -------- | ---------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
685
| type     | string                             | 是   | 订阅事件,固定为'netAvailable'。<br>netAvailable:数据网络可用事件。 |
Z
zengyawen 已提交
686
| callback | Callback\<[NetHandle](#nethandle)> | 是   | 回调函数。                                                   |
687 688 689

**示例:**

Z
zengyawen 已提交
690
```js
C
clevercong 已提交
691
netConnection.on('netAvailable', function (data) {
692 693 694 695
    console.log(JSON.stringify(data))
})
```

M
maosiping 已提交
696
### on('netCapabilitiesChange')
697 698 699

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

C
clevercong 已提交
700
订阅网络能力变化事件。
701 702 703 704 705

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

**参数:**

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

**示例:**

Z
zengyawen 已提交
713
```js
C
clevercong 已提交
714
netConnection.on('netCapabilitiesChange', function (data) {
715 716 717 718
    console.log(JSON.stringify(data))
})
```

M
maosiping 已提交
719
### on('netConnectionPropertiesChange')
720 721 722

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

C
clevercong 已提交
723
订阅网络连接信息变化事件。
724 725 726 727 728

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

**参数:**

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

**示例:**

Z
zengyawen 已提交
736
```js
C
clevercong 已提交
737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758
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; | 是   | 回调函数。                                                   |

**示例:**

Z
zengyawen 已提交
759
```js
C
clevercong 已提交
760
netConnection.on('netBlockStatusChange', function (data) {
761 762 763 764
    console.log(JSON.stringify(data))
})
```

M
maosiping 已提交
765
### on('netLost')
766 767 768

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

C
clevercong 已提交
769
订阅网络丢失事件。
770 771 772 773 774

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

**参数:**

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

**示例:**

Z
zengyawen 已提交
782
```js
C
clevercong 已提交
783 784
let netConnection1 = connection.createNetConnection()
netConnection1.on('netLost', function (data) {
785 786 787 788
    console.log(JSON.stringify(data))
})
```

M
maosiping 已提交
789
### on('netUnavailable')
790 791 792

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

C
clevercong 已提交
793
订阅网络不可用事件。
794 795 796 797 798

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

**参数:**

Z
zengyawen 已提交
799 800
| 参数名   | 类型            | 必填 | 说明                                                         |
| -------- | --------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
801
| type     | string          | 是   | 订阅事件,固定为'netUnavailable'。<br/>netUnavailable:网络不可用事件。 |
Z
zengyawen 已提交
802
| callback | Callback\<void> | 是   | 回调函数。                                                   |
803 804 805

**示例:**

Z
zengyawen 已提交
806
```js
C
clevercong 已提交
807
netConnection.on('netUnavailable', function (data) {
808 809 810 811
    console.log(JSON.stringify(data))
})
```

M
maosiping 已提交
812
### register
813 814 815

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

C
clevercong 已提交
816
订阅指定网络状态变化的通知。
817 818 819 820 821 822 823

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

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

**参数:**

Z
zengyawen 已提交
824 825 826
| 参数名   | 类型                 | 必填 | 说明       |
| -------- | -------------------- | ---- | ---------- |
| callback | AsyncCallback\<void> | 是   | 回调函数。 |
827 828 829

**示例:**

Z
zengyawen 已提交
830
```js
C
clevercong 已提交
831
netConnection.register(function (error) {
832 833 834 835
    console.log(JSON.stringify(error))
})
```

M
maosiping 已提交
836
### unregister
837 838 839

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

C
clevercong 已提交
840
取消订阅默认网络状态变化的通知。
841 842 843 844 845

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

**参数:**

Z
zengyawen 已提交
846 847 848
| 参数名   | 类型                 | 必填 | 说明       |
| -------- | -------------------- | ---- | ---------- |
| callback | AsyncCallback\<void> | 是   | 回调函数。 |
849 850 851

**示例:**

Z
zengyawen 已提交
852
```js
C
clevercong 已提交
853
netConnection.unregister(function (error) {
854 855 856 857
    console.log(JSON.stringify(error))
})
```

M
maosiping 已提交
858
## NetHandle
859

Z
zengyawen 已提交
860
数据网络的句柄。
861

Z
zengyawen 已提交
862 863
在调用NetHandle的方法之前,需要先获取NetHandle对象。

C
clevercong 已提交
864 865
**系统能力**:SystemCapability.Communication.NetManager.Core

Z
zengyawen 已提交
866 867
### 属性

L
liyufan 已提交
868 869 870
| 名称    | 类型   | 必填 | 说明                      |
| ------ | ------ | --- |------------------------- |
| netId  | number | 是  |  网络ID,取值为0代表没有默认网络,其余取值必须大于等于100。 |
871

L
liyufan 已提交
872
### bindSocket<sup>9+</sup>
Z
zhuwenchao 已提交
873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918

bindSocket(socketParam: TCPSocket \| UDPSocket, callback: AsyncCallback\<void>): void;

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

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

**参数:**

| 参数名      | 类型                     | 必填 | 说明                            |
| ----------- | ------------------------ | ---- | -------------------------------|
| socketParam | [TCPSocket](js-apis-socket.md#tcpsocket) \| [UDPSocket](js-apis-socket.md#udpsocket) | 是 | 待绑定的TCPSocket或UDPSocket对象。|
| callback    | AsyncCallback\<void>      | 是   | 回调函数                        |

**示例:**

```js
connection.getDefaultNet().then(function (netHandle) {
    var tcp = socket.constructTCPSocketInstance();
    var udp = socket.constructUDPSocketInstance();
    let socketType = "xxxx";
    if (socketType == "TCPSocket") {
        tcp.bind({
            address: "xxxx", port: xxxx, family: xxxx
        }, err => {
            netHandle.bindSocket(tcp, function (error, data) {
            console.log(JSON.stringify(error))
            console.log(JSON.stringify(data))
        })
    } else {
        udp.on('message', callback);
        udp.bind({
            address: "xxxx", port: xxxx, family: xxxx
        }, err => {
            udp.on('message', (data) => {
            console.log(JSON.stringify(data))
            });
            netHandle.bindSocket(udp, function (error, data) {
            console.log(JSON.stringify(error))
            console.log(JSON.stringify(data))
            });
        })
     }
}
```

L
liyufan 已提交
919
### bindSocket<sup>9+</sup>
Z
zhuwenchao 已提交
920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936

bindSocket(socketParam: TCPSocket \| UDPSocket): Promise\<void>;

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

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

**参数:**

| 参数名          | 类型                  | 必填  | 说明                           |
| --------------- | --------------------- | ---- | ------------------------------ |
| socketParam     | [TCPSocket](js-apis-socket.md#tcpsocket) \| [UDPSocket](js-apis-socket.md#udpsocket) | 是   | 待绑定的TCPSocket或UDPSocket对象。|

**返回值:**

| 类型           | 说明                   |
| -------------- | ---------------------- |
937
| Promise\<void> | 无返回值的Promise对象。 |
Z
zhuwenchao 已提交
938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968

**示例:**

```js
connection.getDefaultNet().then(function (netHandle) {
    var tcp = socket.constructTCPSocketInstance();
    var udp = socket.constructUDPSocketInstance();
    let socketType = "xxxx";
    if(socketType == "TCPSocket") {
        tcp.bind({
            address: "xxxx", port: xxxx, family: xxxx
        }, err => {
            netHandle.bindSocket(tcp).then(err, data) {
            console.log(JSON.stringify(data))
        })
    } else {
        udp.on('message', callback);
        udp.bind({
            address: "xxxx", port: xxxx, family: xxxx
        }, err => {
            udp.on('message', (data) => {
            console.log(JSON.stringify(data))
            });
            netHandle.bindSocket(tcp).then(err, data) {
            console.log(JSON.stringify(data))
            });
        })
     }
}
```

M
maosiping 已提交
969
### getAddressesByName
970 971 972

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

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

C
clevercong 已提交
975 976
**需要权限**:ohos.permission.GET_NETWORK_INFO

977 978 979 980
**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
981 982 983 984
| 参数名   | 类型                                              | 必填 | 说明               |
| -------- | ------------------------------------------------- | ---- | ------------------ |
| host     | string                                            | 是   | 需要解析的主机名。 |
| callback | AsyncCallback\<Array\<[NetAddress](#netaddress)>> | 是   | 回调函数           |
985 986 987

**示例:**

Z
zengyawen 已提交
988
```js
989
connection.getDefaultNet().then(function (netHandle) {
C
clevercong 已提交
990 991
    let host = "xxxx";
    netHandle.getAddressesByName(host, function (error, addresses) {
992
        console.log(JSON.stringify(error))
C
clevercong 已提交
993
        console.log(JSON.stringify(addresses))
994 995 996 997
    })
})
```

M
maosiping 已提交
998
### getAddressesByName
999

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

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

C
clevercong 已提交
1004 1005
**需要权限**:ohos.permission.GET_NETWORK_INFO

1006 1007 1008 1009
**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
1010 1011 1012
| 参数名 | 类型   | 必填 | 说明               |
| ------ | ------ | ---- | ------------------ |
| host   | string | 是   | 需要解析的主机名。 |
1013 1014 1015

**返回值:**

Z
zengyawen 已提交
1016 1017 1018
| 类型                                        | 说明                          |
| ------------------------------------------- | ----------------------------- |
| Promise\<Array\<[NetAddress](#netaddress)>> | 以Promise形式返回所有IP地址。 |
1019 1020 1021

**示例:**

Z
zengyawen 已提交
1022
```js
1023
connection.getDefaultNet().then(function (netHandle) {
C
clevercong 已提交
1024 1025 1026
    let host = "xxxx";
    netHandle.getAddressesByName(host).then(function (addresses) {
        console.log(JSON.stringify(addresses))
1027 1028 1029 1030
    })
})
```

M
maosiping 已提交
1031
### getAddressByName
1032 1033 1034

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

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

C
clevercong 已提交
1037 1038
**需要权限**:ohos.permission.GET_NETWORK_INFO

1039 1040 1041 1042
**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
1043 1044 1045 1046
| 参数名   | 类型                                      | 必填 | 说明               |
| -------- | ----------------------------------------- | ---- | ------------------ |
| host     | string                                    | 是   | 需要解析的主机名。 |
| callback | AsyncCallback\<[NetAddress](#netaddress)> | 是   | 回调函数。         |
1047 1048 1049

**示例:**

Z
zengyawen 已提交
1050
```js
1051
connection.getDefaultNet().then(function (netHandle) {
C
clevercong 已提交
1052 1053
    let host = "xxxx";
    netHandle.getAddressByName(host, function (error, address) {
1054
        console.log(JSON.stringify(error))
C
clevercong 已提交
1055
        console.log(JSON.stringify(address))
1056 1057 1058 1059
    })
})
```

M
maosiping 已提交
1060
### getAddressByName
1061

C
clevercong 已提交
1062
getAddressByName(host: string): Promise\<NetAddress>
1063

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

C
clevercong 已提交
1066 1067
**需要权限**:ohos.permission.GET_NETWORK_INFO

1068 1069 1070 1071
**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

Z
zengyawen 已提交
1072 1073 1074
| 参数名 | 类型   | 必填 | 说明               |
| ------ | ------ | ---- | ------------------ |
| host   | string | 是   | 需要解析的主机名。 |
1075 1076 1077

**返回值:**

Z
zengyawen 已提交
1078 1079 1080
| 类型                                | 说明                            |
| ----------------------------------- | ------------------------------- |
| Promise\<[NetAddress](#netaddress)> | 以Promise形式返回第一个IP地址。 |
1081 1082 1083

**示例:**

Z
zengyawen 已提交
1084
```js
1085
connection.getDefaultNet().then(function (netHandle) {
C
clevercong 已提交
1086 1087 1088
    let host = "xxxx";
    netHandle.getAddressByName(host).then(function (address) {
        console.log(JSON.stringify(address))
1089 1090 1091 1092
    })
})
```

M
maosiping 已提交
1093
## NetSpecifier
1094

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

C
clevercong 已提交
1097 1098
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.NetManager.Core。

L
liyufan 已提交
1099 1100 1101 1102
| 名称                     | 类型                                | 必填  | 说明                                                         |
| ----------------------- | ----------------------------------- | ---- | ------------------------------------------------------------ |
| netCapabilities         | [NetCapabilities](#netcapabilities) |  是  | 存储数据网络的传输能力和承载类型。                                |
| bearerPrivateIdentifier | string                              |  否  |  网络标识符,Wi-Fi网络的标识符是"wifi",蜂窝网络的标识符是"slot0"(对应SIM卡1)。 |
1103

M
maosiping 已提交
1104
## NetCapabilities
1105

M
maosiping 已提交
1106
网络的能力集。
1107

C
clevercong 已提交
1108 1109
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.NetManager.Core。

L
liyufan 已提交
1110 1111 1112 1113 1114 1115
| 名称                  | 类型                                | 必填 | 说明                     |
| --------------------- | ---------------------------------- | --- | ------------------------ |
| linkUpBandwidthKbps   | number                             |  否 |  上行(设备到网络)带宽。  |
| linkDownBandwidthKbps | number                             |  否 |  下行(网络到设备)带宽。   |
| networkCap            | Array\<[NetCap](#netcap)>           |  否 |  网络具体能力。           |
| bearerTypes           | Array\<[NetBearType](#netbeartype)> |  是 |  网络类型。               |
1116

M
maosiping 已提交
1117
## NetCap
1118

M
maosiping 已提交
1119
网络具体能力。
1120

C
clevercong 已提交
1121 1122
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.NetManager.Core。

L
liyufan 已提交
1123
| 名称                  | 值   | 说明                   |
Z
zengyawen 已提交
1124
| ------------------------ | ---- | ---------------------- |
C
clevercong 已提交
1125 1126
| NET_CAPABILITY_MMS | 0 | 表示网络可以访问运营商的MMSC(Multimedia&nbsp;Message&nbsp;Service,多媒体短信服务)发送和接收彩信。 |
| NET_CAPABILITY_NOT_METERED | 11 | 表示网络流量未被计费。 |
1127
| NET_CAPABILITY_INTERNET  | 12   | 表示该网络应具有访问Internet的能力,该能力由网络提供者设置。 |
C
clevercong 已提交
1128
| NET_CAPABILITY_NOT_VPN | 15 | 表示网络不使用VPN(Virtual&nbsp;Private&nbsp;Network,虚拟专用网络)。 |
1129
| NET_CAPABILITY_VALIDATED | 16   | 表示该网络访问Internet的能力被网络管理成功验证,该能力由网络管理模块设置。 |
1130

M
maosiping 已提交
1131
## NetBearType
1132

M
maosiping 已提交
1133
网络类型。
1134

C
clevercong 已提交
1135 1136 1137
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.NetManager.Core。

| 名称         | 值   | 说明        |
Z
zengyawen 已提交
1138 1139 1140
| --------------- | ---- | ----------- |
| BEARER_CELLULAR | 0    | 蜂窝网络。  |
| BEARER_WIFI     | 1    | Wi-Fi网络。 |
C
clevercong 已提交
1141
| BEARER_ETHERNET | 3 | 以太网网络。 |
1142

M
maosiping 已提交
1143
## ConnectionProperties
1144

M
maosiping 已提交
1145
网络连接信息。
1146

C
clevercong 已提交
1147 1148
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.NetManager.Core。

L
liyufan 已提交
1149 1150 1151 1152 1153 1154 1155 1156
| 名称           | 类型                               | 必填 |  说明             |
| ------------- | ---------------------------------- | ----|---------------- |
| interfaceName | string                             | 是 |网卡名称。       |
| domains       | string                             | 是 |所属域,默认""。 |
| linkAddresses | Array\<[LinkAddress](#linkaddress)> | 是 |链路信息。       |
| routes        | Array\<[RouteInfo](#routeinfo)>     | 是 |路由信息。       |
| dnses     | Array\<[NetAddress](#netaddress)>; | 是 |网络地址,参考[NetAddress](#netaddress)。 |
| mtu           | number                             | 是 |最大传输单元。   |
1157

M
maosiping 已提交
1158
## LinkAddress
1159

M
maosiping 已提交
1160
网络链路信息。
1161

C
clevercong 已提交
1162 1163
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.NetManager.Core。

L
liyufan 已提交
1164 1165 1166 1167
| 名称        | 类型                      | 必填 |说明                 |
| ------------ | ----------------------- |---- |-------------------- |
| address      | [NetAddress](#netaddress) | 是 | 链路地址。           |
| prefixLength | number                    | 是 |链路地址前缀的长度。 |
1168

M
maosiping 已提交
1169
## RouteInfo
1170

M
maosiping 已提交
1171
网络路由信息。
1172

C
clevercong 已提交
1173 1174
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.NetManager.Core。

L
liyufan 已提交
1175 1176 1177 1178 1179 1180 1181
| 名称           | 类型                        | 必填 |说明             |
| -------------- | --------------------------- | --- |---------------- |
| interface      | string                      | 是 |网卡名称。       |
| destination    | [LinkAddress](#linkaddress) | 是 |目的地址。       |
| gateway        | [NetAddress](#netaddress)   | 是 |网关地址。       |
| hasGateway     | boolean                     | 是 |是否有网关。     |
| isDefaultRoute | boolean                     | 是 |是否为默认路由。 |
1182

M
maosiping 已提交
1183
## NetAddress
1184

Z
zengyawen 已提交
1185
网络地址。
1186

C
clevercong 已提交
1187 1188
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.NetManager.Core。

L
liyufan 已提交
1189 1190 1191 1192 1193
| 名称    | 类型   | 必填 | 说明                           |
| ------- | ------ | -- |------------------------------ |
| address | string | 是 |地址。                         |
| family  | number | 否 |IPv4 = 1,IPv6 = 2,默认IPv4。 |
| port    | number | 否 |端口,取值范围\[0, 65535]。    |