DESCR 529 B

1234567891011
  1. JNA provides Java programs easy access to native shared libraries
  2. without writing anything but Java code -- no JNI or native code is
  3. required. This functionality is comparable to Windows' Platform/Invoke
  4. and Python's ctypes. Access is dynamic at runtime without code
  5. generation.
  6. JNA allows you to call directly into native functions using natural Java
  7. method invocation. The Java call looks just like it does in native code.
  8. Most calls require no special handling or configuration; no boilerplate
  9. or generated code is required.