Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Context;

import android.net.wifi.WifiInfo;
import android.net.wifi.WifiManager;

public class Main {
    public static String getWIFIIP(Context context) {
        WifiManager wifimanage = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);

        if (!wifimanage.isWifiEnabled()) {
            wifimanage.setWifiEnabled(true);
        }

        WifiInfo wifiinfo = wifimanage.getConnectionInfo();

        String ip = intToIp(wifiinfo.getIpAddress());
        return ip;
    }

    public static String intToIp(int i) {
        return "" + (i & 0xFF) + "." + ((i >> 8) & 0xFF) + "." + ((i >> 16) & 0xFF) + "." + ((i >> 24) & 0xFF);
    }
}