创建 JmDNS 服务的一种方法是:
ServiceInfo.create(type, name, port, weight, priority, props);
其中 props 是描述服务的一些属性的 Map。有没有人有一个例子来说明这些属性的使用,例如如何在接收器部分使用它们。我试过了 :
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);
但是,然后在接受此服务的机器中,我该怎么做才能看到这些属性?
我会感谢任何帮助...