一種方法是:如何查看接收方的JmDNS服務屬性?創建JmDNS服務的
ServiceInfo.create(type, name, port, weight, priority, props);
其中道具是描述服務的一些化子性質的地圖。有沒有人舉例說明使用這些屬性,例如如何在接收器部分使用它們。 我已經試過:
Hashtable<String,String> settings = new Hashtable<String,String>();
settings.put("host", "hhgh");
settings.put("web_port", "hdhr");
settings.put("secure_web_port", "dfhdyhdh");
ServiceInfo info = ServiceInfo.create("_workstation._tcp.local.", "service6", 80, 0, 0, true, settings);
而且,然後在機器接受這種服務,我能做些什麼來看看這些屬性?
我會apreciate任何幫助......