问题
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;
来源:https://stackoverflow.com/questions/1679215/finding-the-ip-address-in-adobe-air