Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6120601
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T15:41:13+00:00 2026-05-23T15:41:13+00:00

I have a c++ file myCppTest.cpp which has method int myFunction(int argv, char **argc)

  • 0

I have a c++ file myCppTest.cpp which has method

int myFunction(int argv, char **argc) {
}

and
a Java native method in myClass.java

public native int myFunction (int argv, char[][] argc);

After generate the header file using javah -jni myClass, i have the header

JNIEXPORT jint JNICALL Java_JPTokenizer_init
  (JNIEnv *, jobject, jint, jobjectArray);

In my myClass.cpp, I defined

JNIEXPORT jint JNICALL Java_JPTokenizer_init
  (JNIEnv *env, jobject obj, jint argv, jobjectArray argc) {
        //need to call int myFunction(int argv, char **argc) in myCppTest.cpp 
}

How could I pass the arguments “jint argv, jobjectArray argc” to “int argv, char **argc”, thanks.

EDIT:

I THINK I MADE A MISTAKE


The Java native method in myClass.java should be

public native int init (int argv, char[][] argc);

So there is

JNIEXPORT jint JNICALL Java_myClass_init
  (JNIEnv *, jobject, jint, jobjectArray);

generated after javah.
And in myClass.cpp, i have

JNIEXPORT jint JNICALL Java_myClass_init
  (JNIEnv *env, jobject obj, jint argv, jobjectArray argc) {
        //need to call int myFunction(int argv, char **argc) in myCppTest.cpp 
}

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T15:41:14+00:00Added an answer on May 23, 2026 at 3:41 pm

    There is no direct mapping between Java objects and C++ primitives, so you will have to convert the arguments that are passed by the Java runtime environment, and then call your function.

    Java will call Java_JPTokenizer_init — this is where you perform your conversion and invoke your "plain old" C++ function.

    To convert the array of strings, you will first need to access the array, then the individual strings.

    • For array access, see GetObjectArrayElement().

    • For string access, see GetStringUTFChars().

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have File object in Java which is a directory path: C:\foo\foo\bar ...and I
I have file A.cpp that has targetlibs=Lib.lib on the sources file. Lib.cpp was compiled
I have a file which is an XML representation of some data that is
We have a file that has a 64 bit integer as a string in
I have file:// links with non-english characters which are UrlEncoded in UTF-8. For these
I have File Upload form which users use to upload certain files on the
I have file like this which contains 5 columns. But some rows in my
this is probably naive question: i have file config.yml which is in .gitignore file
I have file Image_RGB565.raw which contains image buffer in RGB565 format. I want this
i have file called data_out.xml which contains this xml code: <?xml version=1.0 ?> -

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.