calling ioctl() from Java - how is it done?

匿名 (未验证) 提交于 2019-12-03 02:33:02

问题:

I need to access a serial port from within my app (the app has read/write permission to the device). How do I make ioctl() calls from my Java-based app ?

回答1:

JNI -- and it wont be easy

JNI is the Java Native Interface. It defines a way for managed code (written in the Java programming language) to interact with native code (written in C/C++). It's vendor-neutral, has support for loading code from dynamic shared libraries, and while cumbersome at times is reasonably efficient.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!