用Java为adb编写包装程序

发布于 2024-10-01 06:44:33 字数 175 浏览 5 评论 0原文

我需要编写一个java应用程序来检测USB设备,并可用于传递命令,类似于adb(Android调试桥)。

因为,java不提供usb支持。我打算使用某种java包装程序来利用adb功能。我的想法正确吗?如果是,我该如何进行?如何用 Java 创建包装程序?有人可以向我指出一些有用的资源吗?

谢谢。 卡尔

I need to write a java application that detects a USB device, and can be used to pass commands, similar to adb (Android Debug Bridge).

Since, java does not provide usb support. I intend to use some kind of java wrapper program for utilizing adb functions. Am I thinking rightly ? If yes, how do I proceed ? How do I create wrapper programs in Java? Could someone point me to some useful resources.

Thank you.
Carl

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

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

发布评论

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

评论(2

你的心境我的脸 2024-10-08 06:44:33

是的,您可以编写一个包装程序来调用 adb 命令行工具。你也可以使用这个纯java库。

https://github.com/vidstige/jadb

注意:我是这个库的作者,只是说明我的隶属关系。

Yes, you can write a wrapper program that will call the adb command line tool. You can also use this pure java library.

https://github.com/vidstige/jadb

Note: I'm the author of this library, just to state my affiliations.

木槿暧夏七纪年 2024-10-08 06:44:33

我不熟悉adb,但利用USB和其他系统资源的一般方法是JNI。这样你就可以编写一个非常简单的实用程序类,它只包含一些在系统库中实现的本机方法。

希望这会有所帮助。

i'm not familiar with adb, but a general way to utilize USB and other system resources is JNI. That way u can write a really simple utility class, that just holds some native methods which are implemented in a system library.

Hope this helps a bit.

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