用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - android代码库

Android获取手机IP和MAC地址

2013-03-01 作者: 小蜜锋举报

[android]代码库

//需要添加权限:
//<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"></uses-permission>
//<uses-permission android:name="android.permission.INTERNET"></uses-permission>



package exp.getipmac;
import java.net.InetAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.util.Enumeration;
import android.app.Activity;
import android.content.Context;
import android.net.wifi.WifiInfo;
import android.net.wifi.WifiManager;
import android.os.Bundle;
import android.util.Log;
import android.widget.TextView;
public class GetIPMAC extends Activity
{
    public static String hostip;             //本机IP
    public static String hostmac;            //本机MAC

    /** Called when the activity is first created. */
    @Override
    public void onCreate (Bundle savedInstanceState)
    {
        super.onCreate (savedInstanceState);
        setContentView (R.layout.main);
        TextView tv = (TextView) findViewById (R.id.hello);

        hostip = getLocalIpAddress();  //获取本机IP
        hostmac = getLocalMacAddress();//获取本机MAC
        /* 本机IP和MAC */
        tv.setText ("HostIP:" + hostip + "\nHostMAC:" + hostmac);
        /* 打印本机IP和MAC */
        if (hostip != null)
        {
            Log.d ("GetIPMAC", hostip);
        }
        else
        {
            Log.d ("GetIPMAC", "null");
        }
        Log.d ("GetIPMAC", hostmac);
    }

    public String getLocalIpAddress()
    {
        try
        {
            for (Enumeration<NetworkInterface> en = NetworkInterface
                                                    .getNetworkInterfaces(); en.hasMoreElements();)
            {
                NetworkInterface intf = en.nextElement();
                for (Enumeration<InetAddress> enumIpAddr = intf
                        .getInetAddresses(); enumIpAddr.hasMoreElements();)
                {
                    InetAddress inetAddress = enumIpAddr.nextElement();
                    if (!inetAddress.isLoopbackAddress() )
                    {
                        return inetAddress.getHostAddress().toString();
                    }
                }
            }
        }
        catch (SocketException ex)
        {
            Log.e ("WifiPreference IpAddress", ex.toString() );
        }
        return null;
    }

    public String getLocalMacAddress()
    {
        WifiManager wifi = (WifiManager) getSystemService (Context.WIFI_SERVICE);
        WifiInfo info = wifi.getConnectionInfo();
        return info.getMacAddress();
    }
}


网友评论    (发表评论)

共2 条评论 1/1页

发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...