Java Native Interface)

Source: Internet
Author: User

 

To put it bluntly, Java calls the library file DLL (Windows)/SO (UNIX) compiled by C/C ++)

  1. Public class testdll
  2. {
  3. Static
  4. {
  5. System. loadlibrary ("Goodluck ");
  6. }
  7. Public native static int get ();
  8. Public native static int set (int );
  9. Public static void main (string [] ARGs)
  10. {
  11. Testdll test = new testdll ();
  12. Test. Set (10 );
  13. System. Out. println (test. Get ());
  14. }
  15. }

Use javac testdll.JavaCompile it to generate testdll. Class.

Then use javah testdll to generate the testdll. h file in the current directory. This file needs to be called by the C/C ++ program to generate the required library file.

Use JNI. h under testdll. h and include/as the header file to implement

Jniexport jint jnicallJava_ Testdll_get (jnienv *, jclass); and
Jniexport void jnicallJava_ Testdll_set (jnienv *, jclass, jint );

Generate the Goodluck. dll file. OK.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.