如何在Android中找到本地wifi中的Bonjour
我有一个问题,我想通过预装的 Bonjour 获取远程计算机的 Ip。但我无法连接,我不知道为什么,因为我已经从 Git Hub 下载了示例代码,还下载了 jmdns3.4.1 Jar。但该示例包含错误,转换为 Dalvik 格式失败,错误为 1。然后我写了这个问题来得到确切的答案。
感谢是提前的。
I have a problem that I want to get an Ip of remote computer via Bonjour which is preinstalled . But I unable to connect with that, I don't know why because I have download an example code from Git Hub and also download the jmdns3.4.1 Jar. But the sample contains the error as Conversion to Dalvik format failed with error 1. Then I have written this question to get the exact answer.
Thanks is advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您需要使用此处为 Android 编译的 jmdns 特殊版本。原因是 Android 实际上无法执行 Java 类文件,而是执行 Java dex文件,因为它 使用 Dalvik。
如果您 100% 确定您使用的是正确的 jar 文件,也可能是 jar 冲突。有关详细信息,请参阅此问题 。
First off you need to use a special version of jmdns compiled for Android found here. The reason is Android cannot actually execute Java class files, but rather executes Java dex files since it uses Dalvik.
It may also be a jar-conflict if you are 100% sure you're using the right jar-file. See this question for more information.