Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 781 Bytes

File metadata and controls

13 lines (9 loc) · 781 Bytes

Java Native Interface Tutorial

The Java Native Interface (JNI) is a programming framework that enables Java code running in a Java Virtual Machine (JVM) to call and be called bynative applications. This project focus on calling Java methods from c++ program.

The Java function myMain() which is located in main.java can be called from c++ program by using JNI in this project.