Java tutorial
//package com.java2s; import android.content.Context; import android.net.wifi.WifiInfo; import android.net.wifi.WifiManager; public class Main { public static String getSSid(Context ctx) { WifiManager wm = (WifiManager) ctx.getSystemService(Context.WIFI_SERVICE); if (wm != null) { WifiInfo wi = wm.getConnectionInfo(); if (wi != null) { String s = wi.getSSID(); if (s.length() > 2 && s.charAt(0) == '"' && s.charAt(s.length() - 1) == '"') { return s.substring(1, s.length() - 1); } } } return ""; } }