4 Java program JNI calls C ++ to create a Java object

Source: Internet
Author: User

Javacode:

Package cn.com. cloud. sea. nativetest; public class nativecreatedate {public static void main (string [] ARGs) {system. loadlibrary ("nativecreatedatedll"); showdate ();} public native static void showdate ();}

 

 

C ++ code:

# Include "cn_com_cloud_sea_nativetest_nativecreatedate.h" # include <iostream> using namespace STD; jniexport void jnicall encode (jnienv * ENV, jclass jclazz) {jclass date = env-> findclass ("Java/util/date"); // create a date instance jmethodid method_date_init = env-> getmethodid (date, "<init> ", "() V"); // obtain the constructor method object jobject now = env-> newobject (date, method_date_init ); // obtain the current date object jmethodid method_date_execute = env-> getmethodid (date, "gettime", "() J"); jlong time = env-> calllongmethod (now, method_date_execute ); cout <time <Endl ;}

 

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.