What would be the "lo" interface equivalent when programming on a windows platform.

for instance when i want to use the following line:

NetworkInterface interf = NetworkInterface.getByName("lo");

or

NetworkInterface interf = NetworkInterface.getByName("eth1");

what would be its equivalent on windows

有帮助吗?

解决方案

I'd use loopback or localhost, but the answer greatly depends on context. The reason I suggest these names is because they are present in C:\Windows\System32\drivers\etc\networks and C:\Windows\System32\drivers\etc\hosts respectively.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top