Closed. This question needs to be more focused 。它目前不接受答案。
想改善这个问题吗?更新问题,使其仅通过 editing this post 关注一个问题。
5年前关闭。
Improve this question
我现在正在将 DNS-DS 库“mdnsjava”实现到我的 Android 项目中,因为它在多个位置提到,例如在这里:
Are there any other Java libraries for bonjour/zeroconf apart from JMDNS? 。
在实现时,我想知道这个实现是否真的使用了任何缓存和/或它的性能有多稳定。
现在我在过去 2 年里一直在使用 jmDNS,但是这个库在暂停发现(后台应用程序)时无法保留缓存。
此外,jmDNS 在发现设备时缓慢且不稳定。
那么,有人对 mdnsjava 有任何经验吗?
您可以使用上述方法启动/停止发现,并通过重置整个发现
想改善这个问题吗?更新问题,使其仅通过 editing this post 关注一个问题。
5年前关闭。
Improve this question
我现在正在将 DNS-DS 库“mdnsjava”实现到我的 Android 项目中,因为它在多个位置提到,例如在这里:
Are there any other Java libraries for bonjour/zeroconf apart from JMDNS? 。
在实现时,我想知道这个实现是否真的使用了任何缓存和/或它的性能有多稳定。
现在我在过去 2 年里一直在使用 jmDNS,但是这个库在暂停发现(后台应用程序)时无法保留缓存。
此外,jmDNS 在发现设备时缓慢且不稳定。
那么,有人对 mdnsjava 有任何经验吗?
最佳答案
同时我可以说,在大多数情况下,mdnsjava 工作得非常好且稳定。与 jMDNS 相比更好更快。
这是一些重新启动完整发现和启动/停止发现的代码,也许它可以帮助某人:
MulticastDNSService mDNSService = null;
Browse browse = null;
Object serviceDiscoveryInstance = null;
public void stop() {
try {
if (serviceDiscoveryInstance != null && mDNSService != null) {
mDNSService.stopServiceDiscovery(serviceDiscoveryInstance);
mDNSService.close();
}
serviceDiscoveryInstance = null;
//mDNSService = null;
if (browse != null) {
browse.close();
// this is required, otherwise the listeners won't get called in next run
browse = null;
}
Querier querier = MulticastDNSLookupBase.getDefaultQuerier();
if (querier != null) {
querier.close();
}
MulticastDNSLookupBase.setDefaultQuerier(null);
} catch (Exception e) {
Log(..)
}
}
public void start() {
try {
Querier querier = MulticastDNSLookupBase.getDefaultQuerier();
if (querier != null) {
if (mDNSService == null) {
mDNSService = new MulticastDNSService();
}
if (browse == null) {
browse = new Browse(SERVICE_TYPE);
}
if (serviceDiscoveryInstance == null) {
serviceDiscoveryInstance = mDNSService.startServiceDiscovery(browse, this);
}
// add existing entries
Lookup resolve = new Lookup(SERVICE_TYPE);
resolve.setQuerier(mDNSService.getQuerier());
ServiceInstance[] services = resolve.lookupServices();
for (ServiceInstance service : services) {
addDevice(service);
}
resolve.close();
} else {
Log.e("Cannot start mDNS-discovery because querier is not set up!");
resetDiscovery();
}
} catch (Exception e) {
Log.e("Error while discovering network.", e);
resetDiscovery();
}
}
public void clearCaches() {
if (MulticastDNSCache.DEFAULT_MDNS_CACHE != null) {
MulticastDNSCache.DEFAULT_MDNS_CACHE.clearCache();
}
mDNSService = null;
browse = null;
}
private void resetDiscovery(){
stop();
mDNSService = null;
browse = null;
}
您可以使用上述方法启动/停止发现,并通过重置整个发现
stop();
clearCaches();
start();
关于java - DNS-SD:使用 "mdnsjava"的经验?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28482168/
10-12 04:00