Finding the IP address in Adobe AIR

2019-06-05 00:20发布

问题:

How to know the IP address of the system in which the AIR application is currently running, Or how to restrict the usage of AIR application for a particular country?

回答1:

Please try the following code, it works for me.

import flash.net.InterfaceAddress;
import flash.net.NetworkInterface;

var netInterfaces:Vector.<NetworkInterface> = NetworkInfo.networkInfo.findInterfaces();
var addresses:Vector.<InterfaceAddress> = netInterfaces[0].addresses;
ipAddress = addresses[0].address;