控制网络通信
我需要开发一个Android应用程序,通过WiFi与计算机建立连接,然后发送带有数据的数据包。然而,我需要控制发送数据包,不仅是它们的数据,还有标头,也应该可以修改其标头中的任何字段。在 Windows 中,可以使用 winpcap 和 jpcap,我想知道在 Android 上是否可以找到类似的东西。有现成的 API 可以帮助解决我的问题吗?
I need to develop an Android application that sets up connection via WiFi with computer and then sends packets with data. Jowever, I need to control send packets, not only theirs data but also headers, there should be possible to modify any field in their header as well. In windows in it is possible with use of winpcap and jpcap, and I wonder if sth similar I may find on Android. Is there any ready API that will help with my problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Android 上的 Java/Dalvik 应用程序没有可用的 API 可以让您执行此操作。
不过,Android 是一个 Linux 系统。因此,您可以尝试查找/编写一两个 Linux 应用程序来支持您的工作 - 或者使用 JNI。
底线:本机代码肯定是实现您想要的目标所必需的,仅用 Java 无法做到这一点。
There's no API available to a Java/Dalvik app on Android which would allow you to do that.
Android is a Linux system, though. So you could try to find/write one or two Linux applications to support your effort - or use JNI.
Bottomline: Native code will definitely be necessary to achieve what you want, no way to do this in Java alone.