The native keyword acts as a link between the JAVA language and a chunk of code or library written in different languages except for JAVA, which may depend on the machine you are operating on. If the native keyword is applied to a method, then that means the method will be implemented using native code written in some other language (like C or C++) via JNI (JAVA native interface).
The syntax of native code is the same as the normal function definition, with the “native” keyword added at the starting of the function.
Start Your Free Software Development Course
Web development, programming languages, Software testing & others
For example:
public class testing {public native String testMethod (String parameter);}
Here the public is an access modifier. It should be public so that another file can use it. The string is the return data type of the function. It can be integer, character or Boolean depending upon the keyword. The parameter passed to this function is of data type string as well. Everything should be kept underclass.
After function declaration, we call this function via object created, and library loaded.
public static void main(String[] args) { System.loadLibrary("testing"); testing testingnew = new testing(); String output = testingnew.stringMethod("NATIVE"); }
Library defined above should be loaded first, and the n its object is created. With the help of this object, the native function is called.
There should be two files. One containing JAVA code, while the other one should have C/C++ legacy code. Java code will be used to call the legacy code. This legacy code will interact with hardware and return the expected output.
When the legacy code interacts with hardware, then it will not follow the guidelines laid out by JAVA. This code will do the desired processing to get the output and pass the results to JNI. Java native interface will then check in its directory containing all the rules pertaining to native code (This comes under a file called javah.exe in SDK). JNI is designed as part of the Java toolkit. After this processing, the JAVA will publish the outputs in the JAVA language itself. When we are creating the JAVA program, we must make sure that there is a variable/ data flow link between the JAVA file and the legacy file so that there is a smooth flow of data between both.
Steps explaining how to make use of native keywords are given below:
We should write code in Eclipse and run the code to create a library using which then C code will be implemented.
Code: package com.slackerOne;
public class JPP { public static native void pAccess(); public static native int pRead(); public static native void pWrite(int port, int output); static{ System.loadLibrary("JPPlibs"); } public void jAccess(){ JPP.pAccess(); } public int jRead(){ return JPP.pRead(); } public void jWrite(int port, int output){ JPP.pWrite(port, output); } }
After saving this code in the new “class” of the java project, we have to set up a run environment to generate a header file.
When we will run this, we should get a library generated.
Output:
Here we created the header file from the java code, which will link native code and java language.
Given below are some of the advantages.
The rules for a native keyword are as follows.
The native keyword is which bridges the gap between native languages and JAVA. This can be used as a critical link if our software’s interaction with hardware is more efficient in using pre-existing code. It makes the implementation work lesser in comparison to designing a new application code from scratch wherever it could be avoided.
The above is the detailed content of Native keyword in Java. For more information, please follow other related articles on the PHP Chinese website!