|
|
Step By Step |
In this step, you use thejavahutility program to generate a header file (a.hfile) from theHelloWorldJava programming language class. The header file provides a function prototype for the implementation of the native methoddisplayHelloWorld()defined in that class.Run
javahnow on theHelloWorldclass that you created in the previous steps.By default,
javahplaces the new.hfile in the same directory as the.classfile.
Note: Use the-doption to instructjavahto place the header files in a different directory.
The name of the header file is the Java programming language class name with a
.happended to the end. For example, the command shown above will generate a file namedHelloWorld.h.The Function Definition
Look at the header fileHelloWorld.h.#includejava example-1dot1/HelloWorld.hJava_HelloWorld_displayHelloWorld()is the function that provides the implementation for theHelloWorldclass's native methoddisplayHelloWorld, which you will write in Step 4: Write the Native Method Implementation. You use the same function signature when you write the implementation for the native method.If
HelloWorldcontained any other native methods, their function signatures would appear here as well.The name of the native language function that implements the native method consists of the prefix
Java_, the package name, the class name, and the name of the native method. Between each name component is an underscore "_" separator. The package name is omitted when the method is in the default package. Thus, the native methoddisplayHelloWorldwithin theHelloWorldclass becomesJava_HelloWorld_displayHelloWorld(). In our example, there is no package name becauseHelloWorldis in the default package.Notice that the implementation of the native language function, as it appears in the header file, accepts two parameters even though, in its definition in the Java programming language class, it accepts no parameters. The JNI requires every native method to have these two parameters. The first parameter for every native method is a
JNIEnvinterface pointer. It is through this pointer that your native code accesses parameters and objects passed to it from the Java application. Thejobjectparameter is a reference to the object itself. For a non-static native method, such as thedisplayHelloWorldmethod in our example, this argument is a reference to the object. For static native methods, this argument would be a reference to the method's Java programming language class. In a sense, you can think of thejobjectparameter as the "this" variable in the Java programming language. Our example ignores both parameters. The next lesson, Java Native Interface Programming, describes how to access the data using the JNI interface pointer
envparameter.
|
|
Step By Step |