使用 Java 搞乱系统硬件?

发布于 2024-11-15 18:43:36 字数 118 浏览 4 评论 0原文

有没有一种方法可以使用java来扰乱我的系统硬件?比如弹出磁盘托盘、弹出闪存驱动器甚至捕获从 CD 读取或存储到硬盘驱动器的数据?如果可以的话,这个权限能达到什么程度?我是否需要 API 来实现它?假设所有系统权限都允许。

Is there a way that, using java, I can mess with my systems harware? Say like pop open the disk tray, eject a flash drive or even capture the data being read from a CD or being stored to a harddrive? If so how far does this privilege go and do I need an API for it? Assuming that all system privileges allow for it.

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

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

发布评论

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

评论(2

魂归处 2024-11-22 18:43:36

不在 Java 本身内,因为它不是独立于平台的。人们过去曾使用过 hack,最常见的是调用一些外部 VBScript (http://www.rgagnon.com/javadetails/java-0574.html)。

您还可以创建自己的本机库并使用 JNI 来调用该函数。

Not within Java itself, because that isn't platform independent. People have used hacks in the past, the most common being calling some external VBScript (http://www.rgagnon.com/javadetails/java-0574.html).

You could also create your own native library and use JNI to invoke the function.

反话 2024-11-22 18:43:36

不能直接使用,但您可以使用 JNI (http://en.wikipedia.org/wiki/ Java_Native_Interface) 或 JNA (http://jna.java.net/) 来访问 DLL 等。

Not directly, but you can use JNI (http://en.wikipedia.org/wiki/Java_Native_Interface) or JNA (http://jna.java.net/) to access DLLs etc.

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