控制网络通信

发布于 2024-12-12 21:28:53 字数 180 浏览 3 评论 0原文

我需要开发一个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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最好是你 2024-12-19 21:28:53

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文