在 Android 中以本机代码创建 .pcap 文件,然后检索它

发布于 2024-12-03 10:01:45 字数 265 浏览 0 评论 0原文

我有一个使用本机代码生成 .pcap 文件(除其他外)的应用程序。这个想法是,在运行程序时,会创建 pcap 文件,稍后我可以通过将手机插入我的笔记本电脑然后访问它来检索它。

我在本机代码中使用 fopen()、fwrite() 和 fclose() 来创建 .pcap 文件。我的问题是,我应该如何指定文件名和文件路径?例如,当我在 Windows 上运行它时,我只使用“test.pcap”并在同一文件夹中生成它,但是这在 Android 上如何工作?正如我之前提到的,该文件是在本机级别创建的。

I have an app that uses native code to generate a .pcap file (amongst other things). The idea is that while running the program, the pcap file is created and I can later retrieve it by say plugging in the phone into my laptop and then access it.

I use fopen(), fwrite() and fclose() in my native code to create the .pcap file. My question is, how should I specify the filename and filepath? For example, when I run it on windows, I just use "test.pcap" and it generates it in the same folder, but how does this work on android? As I mentioned before, the file is created down in native level.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

独﹏钓一江月 2024-12-10 10:01:45

无论是否是原生的,目录结构应该是相同的。
您可以在/flash 中创建一个名为pcap 的目录。但首先检查它是否存在,因为它可以是/nand。如果要写入 SD 卡,请使用 /sdcard

之后,您可以使用 /flash/pcap/test.pcap 作为文件的路径。该文件将在内部闪存中创建。

Native or not, the directory structure should be the same.
You can create a directory in /flash called pcap. But check it exists first, as it can be /nand. Use /sdcard if you want to write in the SD card.

After that you can use, say, /flash/pcap/test.pcap as path for the file. The file would be created in the internal flash memory.

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