Click here to Skip to main content
15,881,588 members
Articles / Programming Languages / Java / Java SE
Article

JNI Basics - 1

Rate me:
Please Sign up or sign in to vote.
4.19/5 (34 votes)
10 Sep 20023 min read 502.1K   82   80
Calling native functions which are written in C or C++ from Java, using JNI.

Image 1

Introduction

In this tutorial, I will try to explain how to call native functions which are written in C or C++ from Java, using JNI.

What is JNI

JNI is an acronym of Java Native Interface. Using JNI, we can call functions which are written in other languages from Java. Advantages and disadvantages of this method are as follows:

Advantages:

  1. You can use your existing library which was previously written in another language.
  2. You can call Windows API functions.
  3. For the sake of execution speed.
  4. You can call API functions of some server product which is in C or C++, from Java client.

Disadvantages:

  1. You can’t say "write once run anywhere".
  2. Difficult to debug runtime error in native code.
  3. Potential security risk.
  4. You can’t call it from Applets.

Here we will try to call the MFC function AfxMessageBox() from Java. Our function in C++ will take no arguments and will not return any value.

JavaScript
//Test1.java
class Test1
{
    static
    {
        System.loadLibrary("TestDll");
    }
    public static void main(String ar[])
    {
        System.out.println("Hello world from Java");
        Test1 t=new Test1();
        t.inDll();
    }
    public native void inDll();
}

In static block, we are loading a DLL named TestDll.dll which should be placed in <WINDIR>/SYSTEM32 directory. I am not saying you cannot put this DLL in other directories, you can, but then you will have to register that path in JVM. Here you can call another method as well, instead of loadLibrary().

JavaScript
System.load("c://winnt//system32//TestDll.dll");

I think load() method is better as far as usage is concerned because you can easily place your DLL in any directory.

JavaScript
public native void inDll();

As you can guess, this native keyword specifies that inDll() is a native function which is implemented in the library. Also noticeable, there is no implementation. When we call this function in our code, JVM will look for the function in the loaded DLL (due to static block, DLL will be loaded immediately after the loading of the class) and then call that function. Otherwise it will throw java.lang.UnsatisfiedLinkError exception.

Compile this class normally. Now we will need to generate header file of this class.

You can use javah.exe utility which is included with JDK.

Javah -jni Test1

Header file is generated in current directory with the name Test1.h. Keep this header file safe as we will use this soon.

Now we are going to write a DLL which will contain the implementation of our native function. I have chosen MFC AppWizard (DLL) in project and named my project: TestDll.

Include your class header file which was generated previously using javah.exe in TestDll.h.

Copy following line from Test1.h and paste it at the end of TestDll.h.

JavaScript
JNIEXPORT void JNICALL Java_Test1_inDll(JNIEnv *, jobject);

Change this line to:

JavaScript
JNIEXPORT void JNICALL Java_Test1_inDll(JNIEnv *env, jobject obj)
{
    AfxMessageBox("Hello World from dll");
}

Compile this DLL, you will get an error from compiler because compiler was unable to find jni.h file which is included in Test1.h. So include the following two directories in IDE settings.

  • <Drive>:\<JDK Directory>\include
  • <Drive>:\<JDK Directory>\include\win32

Go to Project/Settings, on C/C++ tab, go to Project option, insert following lines at the end:

/I "<Drive>:\<JDK Directory>\include "
/I "<Drive>:\<JDK Directory>\include\win32"

Now compile and generate your DLL, put newly created DLL in system32 directory and then run your class file. It should work properly. If you receive an error like UnsatisfiedLinkError, then recheck your procedure. If you are using any IDE, then try using command prompt. Hope it will work.

In this tutorial, I have tried to explain the basics of JNI. I will write a second tutorial of the series soon in which I will explain how to pass parameters to native functions and return something, along with a practical example.

Waiting for your comments and questions.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Pakistan Pakistan
Irfan Dawood is the junior year student at Department of Computer Science, University of Karachi. His interest includes programming in C++ and Java.

Comments and Discussions

 
GeneralC++ application to Java using JNI Pin
brofirdaus24-Jun-07 16:49
brofirdaus24-Jun-07 16:49 
Generalpassing objects in jni Pin
katri23-Mar-07 0:53
katri23-Mar-07 0:53 
GeneralRe: passing objects in jni Pin
K.M.Hussain23-Mar-07 5:13
K.M.Hussain23-Mar-07 5:13 
Questionsome problem Pin
Member 385999823-Feb-07 22:18
Member 385999823-Feb-07 22:18 
Generalhelpful Pin
sheniss13-Oct-06 1:29
sheniss13-Oct-06 1:29 
Questionhelp me out JNI problem Pin
good61-Aug-06 3:54
good61-Aug-06 3:54 
GeneralUsing Visual Studio 2005 Pin
WiseHacker14-Jun-06 15:52
WiseHacker14-Jun-06 15:52 
GeneralRe: Using Visual Studio 2005 Pin
CodeKayak22-Nov-06 11:48
CodeKayak22-Nov-06 11:48 
GeneralRe: Using Visual Studio 2005 Pin
fish.soluble22-Feb-07 6:23
fish.soluble22-Feb-07 6:23 
GeneralRe: Using Visual Studio 2005 Pin
thebigandroid13-May-08 11:33
thebigandroid13-May-08 11:33 
Generalsupermarket simulation Pin
mccleon3-Mar-06 6:35
mccleon3-Mar-06 6:35 
Generalthe client retreive info from the server by pressing a button in java Pin
mccleon3-Mar-06 6:31
mccleon3-Mar-06 6:31 
Generallearning Pin
Programgirl27-Jan-06 8:18
Programgirl27-Jan-06 8:18 
GeneralRe: learning Pin
conscript121-Aug-08 3:09
conscript121-Aug-08 3:09 
Generalgetting set up Pin
Programgirl27-Jan-06 8:15
Programgirl27-Jan-06 8:15 
GeneralRe: getting set up Pin
WiseHacker14-Jun-06 16:17
WiseHacker14-Jun-06 16:17 
GeneralJava call DLL Pin
jigneshlakhani8-Jan-06 23:42
jigneshlakhani8-Jan-06 23:42 
GeneralRe: Java call DLL Pin
<color>Aljechin 11-Jan-06 23:36
<color>Aljechin 11-Jan-06 23:36 
GeneralRe: Java call DLL Pin
jigneshlakhani12-Jan-06 0:04
jigneshlakhani12-Jan-06 0:04 
GeneralGood Article.(I have successfully done it.) Pin
Raksha Dokania19-Dec-05 1:10
Raksha Dokania19-Dec-05 1:10 
GeneralRe: Good Article.(I have successfully done it.) [modified] Pin
WiseHacker14-Jun-06 16:23
WiseHacker14-Jun-06 16:23 
GeneralDebug DLL File Pin
lvguangchuan18-Oct-05 10:17
lvguangchuan18-Oct-05 10:17 
GeneralHelp me in solving Unsatisfiedlinkerror! Pin
Anonymous17-Aug-05 0:00
Anonymous17-Aug-05 0:00 
GeneralRe: Help me in solving Unsatisfiedlinkerror! Pin
Yanaisama26-Dec-06 5:31
Yanaisama26-Dec-06 5:31 
GeneralRe: Help me in solving Unsatisfiedlinkerror! Pin
ravindra.java10-Apr-07 22:09
ravindra.java10-Apr-07 22:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.