是否可以在 Java 程序中访问 Windows 机器的 ipconfig /all 输出的“特定于连接的 DNS 后缀”字段中包含的字符串?
例如:
C:>ipconfig /全部
以太网适配器本地连接:
Connection-specific DNS Suffix . : myexample.com <======== This string
Description . . . . . . . . . . . : Broadcom NetXtreme Gigabit Ethernet
Physical Address. . . . . . . . . : 00-30-1B-B2-77-FF
Dhcp Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
IP Address. . . . . . . . . . . . : 192.168.1.66
Subnet Mask . . . . . . . . . . . : 255.255.255.0
我知道 getDisplayName() 将返回描述(例如:上面的 Broadcom NetXtreme Gigabit Ethernet),并且 getInetAddresses() 将为我提供绑定到此网络接口的 IP 地址列表。
但是还有阅读“特定于连接的 DNS 后缀”的方法吗?