使用 Java 搞乱系统硬件?
有没有一种方法可以使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不在 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.
不能直接使用,但您可以使用 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.