我试图让 JmDNS 在我的 android 程序中工作。我能够让它发现我想要的设备,但我不完全了解如何将信息从 JmDNS 获取到启动 JmDNS 任务的对象。这是我的代码。
protected void browse() {
try {
jmdns = (JmDNSImpl) JmDNS.create();
jmdns.addServiceListener(type, listener = new ServiceListener() {
public void serviceResolved(ServiceEvent ev) {
}
public void serviceRemoved(ServiceEvent ev) {
}
public void serviceAdded(ServiceEvent event) {
DNSEntry addressEntry = jmdns.getCache().getDNSEntry(name, DNSRecordType.TYPE_A, DNSRecordClass.CLASS_ANY);
if (addressEntry instanceof DNSRecord) {
ServiceInfo cachedAddressInfo = ((DNSRecord) addressEntry).getServiceInfo(true);
if (cachedAddressInfo != null) {
for (Inet4Address address : cachedAddressInfo.getInet4Addresses()) {
//I need to get the address that is here back out of this listener to the main thread
}
}
}
}
});
} catch (IOException e) {
e.printStackTrace();
}
我遇到的问题是我有一个服务管理器对象,它有一个浏览器对象的实例,其中包含浏览方法。我无法让服务管理器对象访问地址变量。因为 JmDNS 在创建它以运行其任务时会产生自己的线程,所以我尝试使用处理程序和 runnable 来发送带有变量的消息,但我似乎无法正确处理。任何人都可以帮忙吗?