Learn about how to find wifi ip address on android, we have the largest and most updated how to find wifi ip address on android information on alibabacloud.com
When I was working on a project recently, I encountered a small problem and recorded it in my blog.
Because the project needs to obtain the WiFi-IP address of the current Android system, it is habitually searched on the Internet, and a code segment is used and tested. The Code is as follows:
1 try { 2 for (Enumera
Android obtains the IP address of the device.
Overall retrieval: You can use mobile data to access the Internet and obtain IP addresses. You can also use WiFi to obtain IP addresses.
public static String getPhoneIp() { try {
PackageCom.jason.demo.androidip;ImportAndroid.content.Context;ImportAndroid.net.DhcpInfo;ImportAndroid.net.wifi.WifiInfo;ImportAndroid.net.wifi.WifiManager;ImportAndroid.text.format.Formatter; Public classIPAddress { PublicString getipaddress (Context ctx) {//Get WiFi serviceWifimanager Wifimanager =(Wifimanager) Getsystemservice (Context.wifi_service); //determine if WiFi is turned on if not turned on this
Overall access can be mobile data on the Internet get IP also can WiFi access methodpublic static String Getphoneip () { try {for (enumerationWiFi Get IP methodPrivate String inttoip (int IP) {return (IP 0xFF) + "." + ((IP
As long as you can find the system in the virtual machine through the IP address, you can do a lot of things, such as:ADB debugging, or using NC commands to transfer some files or folders, etc...The following is an example of debugging android-x86 in the ADB connection VirtualBox:Installing
Original: http://www.cnblogs.com/android100/p/Android-get-ip.html1. Use WiFiSet user Permissions First
uses-permission android:name="Android.permission.ACCESS_WIFI_STATE"> Uses-permission>
uses-permission android:name="Android.permission.CHANGE_WIFI_STATE"> Uses-permission>
uses-permission android:name="Android.permission.WAKE_LOCK">uses-permission >
Second, the code is as follows
Public void OnCreate (Bundle savedinstan
Try { //get all the network devices on your phone (WiFi module)enumerationnetworkinterface.getnetworkinterfaces (); //Enumerate all network devices while(Netinterface.hasmoreelements ()) {NetworkInterface ni=netinterface.nextelement (); //gets the IP address that is bound to the current network deviceenumerationni.getinetaddresses (); whil
and forward the data."Simulator (5554)-server/Simulator (5556)-client"Purpose: The simulator (5556) is connected to the 7100 port of the simulator (5554).Implementation is also relatively complex. To do this, port mapping is also done first.Map the native port tcp/6100 to the emulator (5554) tcp/7100 port (UDP is the same).>adb–s emulator-5554 forward tcp:6100 tcp:7100After the port mapping is successful, proceed to the following experiment.Method 1 (correct):Simulator (5554)-server:serversocke
Private string getip () {wifimanager WM = (wifimanager) getsystemservice (context. wifi_service); // check the WiFi status if (! WM. iswifienabled () WM. setwifienabled (true); wifiinfo Wi = WM. getconnectioninfo (); // get the 32-bit integer IP address int ipadd = WI. getipaddress (); // converts an integer address to
This article describes the Android implementation approach to acquiring wired and wireless IP addresses. Share to everyone for your reference. Specifically as follows:
To do the development of Android, encountered the problem of getting a wired IP address. Not much to say c
1. Use WIFI
First, set user permissions.
Second, the Code is as follows:
Public void onCreate (Bundle savedInstanceState ){
Super. onCreate (savedInstanceState );
SetContentView (R. layout. main );
// Get the wifi Service
WifiManager wifiManager = (WifiManager) getSystemService (Context. WIFI_SERVICE );
// Determine whether wifi is enabled
If (! WifiManager.
On the Internet, we can see that many basic tutorials use 127.0.0.1 as the IP address of the PC host when connecting the simulator to the PC host. In fact, this error occurs.If you use this address, it is like we usually use a PC to debug some WebProgramThe localhost is the same, but in the Android system, localhost po
1. Using WiFi
Set user Permissions First
Copy Code code as follows:
Second, the code is as follows
Copy Code code as follows:
public void OnCreate (Bundle savedinstancestate) {
Super.oncreate (savedinstancestate);
Setcontentview (R.layout.main);
Get WiFi Service
Wifimanager Wifimanager = (wifimanager) getsystemservice (Context.wifi_service);
Determine if
1 Get IPV4 Addresspublicstringgetlocalipaddress () { Stringaddress= "0";try{ Enumeration 2 Get IPV6 address publicstringgetlocalipaddress () { Stringaddress= "0";try{ EnumerationThis article is from the "Jackyanngo" blog, make sure to keep this source http://jackyanngo.blog.51cto.com/5263823/1614612[Android] Get IP address
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.