JNI API and C API (Deprecated)

From wizarPOS

JNI API Overview

The JNI (Java Native Interface) API is a tool that allows Java developers to use the C programming language in their Java applications. While it's available, we suggest using the Java API for most cases, as it's easier to work with.

C API Details

  • The C API is already integrated into the system with necessary header files and libraries.
  • Developers can build their own native libraries using the C API to handle specific tasks in their applications. This approach is often more secure compared to using Java.
  • For instance, the EMV (Europay, MasterCard, and Visa) processing can be efficiently handled through the C API.

Resources for C API