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

后端 未结 1 1875
隐瞒了意图╮
隐瞒了意图╮ 2020-12-21 16:54

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条回答
  • 2020-12-21 17:30

    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.

    0 讨论(0)
提交回复
热议问题