我正在使用以下代码扫描连接到启用热点的设备的 wifi 设备。它正在检测几乎所有设备,但问题是当 wifi 设备与热点断开连接时列表没有刷新(即列表显示 wifi 设备,即使它们已断开连接,列表不应该显示设备已断开连接)。如果 wifi 设备连接到我的热点设备一次,它会在列表中显示 wifi 设备,并且设备列表在我不关闭热点之前不会刷新以下是我的代码片段...
公共 ArrayList getClientList(boolean onlyReachables, intreachableTimeout) {
BufferedReader br = null;
ArrayList<ClientScanResultSO> result = null;
try {
result = new ArrayList<ClientScanResultSO>();
br = new BufferedReader(new FileReader("/proc/net/arp"));
String line;
while ((line = br.readLine()) != null) {
String[] splitted = line.split(" +");
if ((splitted != null) && (splitted.length >= 4)) {
// Basic sanity check
String mac = splitted[3];
System.out.println("mac is***************"+ mac);
if (mac.matches("..:..:..:..:..:..")) {
boolean isReachable = InetAddress.getByName(splitted[0]).isReachable(reachableTimeout);
String name = InetAddress.getByName(splitted[0]).getHostName();
if (!onlyReachables || isReachable) {
result.add(new ClientScanResultSO(splitted[0], splitted[3], splitted[5], isReachable, name));
}
}
}
}
} catch (Exception e) {
Log.e(this.getClass().toString(), e.getMessage());
} finally {
try {
br.close();
} catch (IOException e) {
Log.e(this.getClass().toString(), e.getMessage());
}
}
return result;
}
我希望 wifi 设备与我的启用热点的 android 设备断开连接时不会显示在列表中有人请在这方面帮助我。谢谢!