我正在编写的 android 应用程序有两个问题。
我正在读取本地 arp 表/proc/net/arp
并将 ip 和相应的 mac 地址保存在哈希图中。看我的功能。它工作正常。
/**
* Extract and save ip and corresponding MAC address from arp table in HashMap
*/
public Map<String, String> createArpMap() throws IOException {
checkMapARP.clear();
BufferedReader localBufferdReader = new BufferedReader(new FileReader(new File("/proc/net/arp")));
String line = "";
while ((line = localBufferdReader.readLine()) != null) {
String[] ipmac = line.split("[ ]+");
if (!ipmac[0].matches("IP")) {
String ip = ipmac[0];
String mac = ipmac[3];
if (!checkMapARP.containsKey(ip)) {
checkMapARP.put(ip, mac);
}
}
}
return Collections.unmodifiableMap(checkMapARP);
}
第一个问题:
我也在使用广播接收器。当我的应用收到状态时,
WifiManager.NETWORK_STATE_CHANGED_ACTION
我检查是否建立了与网关的连接。如果为真,我调用我的函数来读取 arp 表。但是在这个阶段系统还没有建立起arp表。有时当我收到连接状态时,arp 表仍然是空的。有人有解决这个问题的想法吗?
第二个问题:
我想以持久的方式保存网关的 ip 和 mac 地址。现在我正在为此使用共享首选项。也许最好写入内部存储?
有小费吗?