1. Introduction
As we know, one of the main strengths of Java is its portability โ meaning that once we write and compile code, the result of this process is platform-independent bytecode.
Simply put, this can run on any machine or device capable of running a Java Virtual Machine, and it will work as seamlessly as we could expect.
However, sometimes we do actually need to use code thatโs natively-compiled for a specific architecture.
There could be some reasons for needing to use native code:
- The need to handle some hardware
- Performance improvement for a very demanding process
- An existing library that we want to reuse instead of rewriting it in Java.
To achieve this, the JDK introduces a bridge between the bytecode running in our JVM and the native code (usually written in C or C++).
The tool is called Java Native Interface. In this article, weโll see how it is to write some code with it.
2. How It Works
2.1. Native Methods: the JVM Meets Compiled Code
Java provides the native keyword thatโs used to indicate that the method implementation will be provided by a native code.
Normally, when making a native executable program, we can choose to use static or shared libs:
- Static libs โ all library binaries will be included as part of our executable during the linking process. Thus, we wonโt need the libs anymore, but itโll increase the size of our executable file.
- Shared libs โ the final executable only has references to the libs, not the code itself. It requires that the environment in which we run our executable has access to all the files of the libs used by our program.
The latter is what makes sense for JNI as we canโt mix bytecode and natively compiled code into the same binary file.
Therefore, our shared lib will keep the native code separately within its .so/.dll/.dylib file (depending on which Operating System weโre using) instead of being part of our classes.
The native keyword transforms our method into a sort of abstract method:
private native void aNativeMethod();
With the main difference that instead of being implemented by another Java class, it will be implemented in a separated native shared library.
A table with pointers in memory to the implementation of all of our native methods will be constructed so they can be called from our Java code.
2.2. Components Needed
Hereโs a brief description of the key components that we need to take into account. Weโll explain them further later in this article
- Java Code โ our classes. They will include at least one native method.
- Native Code โ the actual logic of our native methods, usually coded in C or C++.
- JNI header file โ this header file for C/C++ (include/jni.h into the JDK directory) includes all definitions of JNI elements that we may use into our native programs.
- C/C++ Compiler โ we can choose between GCC, Clang, Visual Studio, or any other we like as far as itโs able to generate a native shared library for our platform.
2.3. JNI Elements in Code (Java And C/C++)
Java elements:
- โnativeโ keyword โ as weโve already covered, any method marked as native must be implemented in a native, shared lib.
- System.loadLibrary(String libname) โ a static method that loads a shared library from the file system into memory and makes its exported functions available for our Java code.
C/C++ elements (many of them defined within jni.h)
- JNIEXPORT- marks the function into the shared lib as exportable so it will be included in the function table, and thus JNI can find it
- JNICALL โ combined with JNIEXPORT, it ensures that our methods are available for the JNI framework
- JNIEnv โ a structure containing methods that we can use our native code to access Java elements
- JavaVM โ a structure that lets us manipulate a running JVM (or even start a new one) adding threads to it, destroying it, etcโฆ
3. Hello World JNI
Next, letโs look at how JNI works in practice.
In this tutorial, weโll use C++ as the native language and G++ as compiler and linker.
We can use any other compiler of our preference, but hereโs how to install G++ on Ubuntu, Windows, and MacOS:
- Ubuntu Linux โ run command โsudo apt-get install build-essentialโ in a terminal
- Windows โ Install MinGW
- MacOS โ run command โg++โ in a terminal and if itโs not yet present, it will install it.
3.1. Creating the Java Class
Letโs start creating our first JNI program by implementing a classic โHello Worldโ.
To begin, we create the following Java class that includes the native method that will perform the work:
package com.baeldung.jni;
public class HelloWorldJNI {
static {
System.loadLibrary("native");
}
public static void main(String[] args) {
new HelloWorldJNI().sayHello();
}
// Declare a native method sayHello() that receives no arguments and returns void
private native void sayHello();
}
As we can see, we load the shared library in a static block. This ensures that it will be ready when we need it and from wherever we need it.
Alternatively, in this trivial program, we could instead load the library just before calling our native method because weโre not using the native library anywhere else.
3.2. Implementing a Method in C++
Now, we need to create the implementation of our native method in C++.
Within C++ the definition and the implementation are usually stored in .h and .cpp files respectively.
First, to create the definition of the method, we have to use the -h flag of the Java compiler. It should be noted that for versions earlier than java 9, we should use the javah tool instead of javac -h command:
javac -h . HelloWorldJNI.java
This will generate a com_baeldung_jni_HelloWorldJNI.h file with all the native methods included in the class passed as a parameter, in this case, only one:
JNIEXPORT void JNICALL Java_com_baeldung_jni_HelloWorldJNI_sayHello
(JNIEnv *, jobject);
As we can see, the function name is automatically generated using the fully qualified package, class and method name.
Also, something interesting that we can notice is that weโre getting two parameters passed to our function; a pointer to the current JNIEnv; and also the Java object that the method is attached to, the instance of our HelloWorldJNI class.
Now, we have to create a new .cpp file for the implementation of the sayHello function. This is where weโll perform actions that print โHello Worldโ to console.
Weโll name our .cpp file with the same name as the .h one containing the header and add this code to implement the native function:
JNIEXPORT void JNICALL Java_com_baeldung_jni_HelloWorldJNI_sayHello
(JNIEnv* env, jobject thisObject) {
std::cout << "Hello from C++ !!" << std::endl;
}
3.3. Compiling and Linking
At this point, we have all parts we need in place and have a connection between them.
We need to build our shared library from the C++ code and run it!
To do so, we have to use G++ compiler, not forgetting to include the JNI headers from our Java JDK installation.
Ubuntu version:
g++ -c -fPIC -I${JAVA_HOME}/include -I${JAVA_HOME}/include/linux com_baeldung_jni_HelloWorldJNI.cpp -o com_baeldung_jni_HelloWorldJNI.o
Windows version:
g++ -c -I%JAVA_HOME%\include -I%JAVA_HOME%\include\win32 com_baeldung_jni_HelloWorldJNI.cpp -o com_baeldung_jni_HelloWorldJNI.o
MacOS version;
g++ -c -fPIC -I${JAVA_HOME}/include -I${JAVA_HOME}/include/darwin com_baeldung_jni_HelloWorldJNI.cpp -o com_baeldung_jni_HelloWorldJNI.o
Once we have the code compiled for our platform into the file com_baeldung_jni_HelloWorldJNI.o, we have to include it in a new shared library. Whatever we decide to name it is the argument passed into the method System.loadLibrary.
We named ours โnativeโ, and weโll load it when running our Java code.
The G++ linker then links the C++ object files into our bridged library.
Ubuntu version:
g++ -shared -fPIC -o libnative.so com_baeldung_jni_HelloWorldJNI.o -lc
Windows version:
g++ -shared -o native.dll com_baeldung_jni_HelloWorldJNI.o -Wl,--add-stdcall-alias
MacOS version:
g++ -dynamiclib -o libnative.dylib com_baeldung_jni_HelloWorldJNI.o -lc
And thatโs it!
We can now run our program from the command line.
However, we need to add the full path to the directory containing the library weโve just generated. This way Java will know where to look for our native libs:
java -cp . -Djava.library.path=/NATIVE_SHARED_LIB_FOLDER com.baeldung.jni.HelloWorldJNI
Console output:
Hello from C++ !!
4. Using Advanced JNI Features
Saying hello is nice but not very useful. Usually, we would like to exchange data between Java and C++ code and manage this data in our program.
4.1. Adding Parameters To Our Native Methods
Weโll add some parameters to our native methods. Letโs create a new class called ExampleParametersJNI with two native methods using parameters and returns of different types:
private native long sumIntegers(int first, int second);
private native String sayHelloToMe(String name, boolean isFemale);
And then, repeat the procedure to create a new .h file with โjavac -hโ as we did before.
Now create the corresponding .cpp file with the implementation of the new C++ method:
...
JNIEXPORT jlong JNICALL Java_com_baeldung_jni_ExampleParametersJNI_sumIntegers
(JNIEnv* env, jobject thisObject, jint first, jint second) {
std::cout << "C++: The numbers received are : " << first << " and " << second << std::endl;
return (long)first + (long)second;
}
JNIEXPORT jstring JNICALL Java_com_baeldung_jni_ExampleParametersJNI_sayHelloToMe
(JNIEnv* env, jobject thisObject, jstring name, jboolean isFemale) {
const char* nameCharPointer = env->GetStringUTFChars(name, NULL);
std::string title;
if(isFemale) {
title = "Ms. ";
}
else {
title = "Mr. ";
}
std::string fullName = title + nameCharPointer;
return env->NewStringUTF(fullName.c_str());
}
...
Weโve used the pointer *env of type JNIEnv to access the methods provided by the JNI environment instance.
JNIEnv allows us, in this case, to pass Java Strings into our C++ code and back out without worrying about the implementation.
We can check the equivalence of Java types and C JNI types into Oracle official documentation.
To test our code, weโve to repeat all the compilation steps of the previous HelloWorld example.
4.2. Using Objects and Calling Java Methods From Native Code
In this last example, weโre going to see how we can manipulate Java objects into our native C++ code.
Weโll start creating a new class UserData that weโll use to store some user info:
package com.baeldung.jni;
public class UserData {
public String name;
public double balance;
public String getUserInfo() {
return "[name]=" + name + ", [balance]=" + balance;
}
}
Then, weโll create another Java class called ExampleObjectsJNI with some native methods with which weโll manage objects of type UserData:
...
public native UserData createUser(String name, double balance);
public native String printUserData(UserData user);
One more time, letโs create the .h header and then the C++ implementation of our native methods on a new .cpp file:
JNIEXPORT jobject JNICALL Java_com_baeldung_jni_ExampleObjectsJNI_createUser
(JNIEnv *env, jobject thisObject, jstring name, jdouble balance) {
// Create the object of the class UserData
jclass userDataClass = env->FindClass("com/baeldung/jni/UserData");
jobject newUserData = env->AllocObject(userDataClass);
// Get the UserData fields to be set
jfieldID nameField = env->GetFieldID(userDataClass , "name", "Ljava/lang/String;");
jfieldID balanceField = env->GetFieldID(userDataClass , "balance", "D");
env->SetObjectField(newUserData, nameField, name);
env->SetDoubleField(newUserData, balanceField, balance);
return newUserData;
}
JNIEXPORT jstring JNICALL Java_com_baeldung_jni_ExampleObjectsJNI_printUserData
(JNIEnv *env, jobject thisObject, jobject userData) {
// Find the id of the Java method to be called
jclass userDataClass=env->GetObjectClass(userData);
jmethodID methodId=env->GetMethodID(userDataClass, "getUserInfo", "()Ljava/lang/String;");
jstring result = (jstring)env->CallObjectMethod(userData, methodId);
return result;
}
Again, weโre using the JNIEnv *env pointer to access the needed classes, objects, fields and methods from the running JVM.
Normally, we just need to provide the full class name to access a Java class, or the correct method name and signature to access an object method.
Weโre even creating an instance of the class com.baeldung.jni.UserData in our native code. Once we have the instance, we can manipulate all its properties and methods in a way similar to Java reflection.
We can check all other methods of JNIEnv into the Oracle official documentation.
4. Disadvantages of Using JNI
JNI bridging does have its pitfalls.
The main downside being the dependency on the underlying platform; we essentially lose the โwrite once, run anywhereโ feature of Java. This means that weโll have to build a new lib for each new combination of platform and architecture we want to support. Imagine the impact that this could have on the build process if we supported Windows, Linux, Android, MacOSโฆ
JNI not only adds a layer of complexity to our program. It also adds a costly layer of communication between the code running into the JVM and our native code: we need to convert the data exchanged in both ways between Java and C++ in a marshaling/unmarshaling process.
Sometimes there isnโt even a direct conversion between types so weโll have to write our equivalent.
5. Conclusion
Compiling the code for a specific platform (usually) makes it faster than running bytecode.
This makes it useful when we need to speed up a demanding process. Also, when we donโt have other alternatives such as when we need to use a library that manages a device.
However, this comes at a price as weโll have to maintain additional code for each different platform we support.
Thatโs why itโs usually a good idea to only use JNI in the cases where thereโs no Java alternative.
