Here you can find the source of isConMeNetwork(String ssid)
public static boolean isConMeNetwork(String ssid)
//package com.java2s; public class Main { public static final String NETWORK_BRANDING = "ConMe||"; public static boolean isConMeNetwork(String ssid) { if (ssid.startsWith(NETWORK_BRANDING) && ssid.length() == 15) return true; return false; }/* w w w.j a va2s. c om*/ }