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 9074155
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T18:34:25+00:00 2026-06-16T18:34:25+00:00

I am trying to get a string in return to a function call from

  • 0

I am trying to get a string in return to a function call from cpp to java.

This is my JNI call

 string GetIDJni()
{
    cocos2d::JniMethodInfo methodInfo;
    if (! JniHelper::getStaticMethodInfo(methodInfo, CLASS_NAME, "GetID", "()Ljava/lang/String"))
    {
        return "";
    }

    jobject retObj = methodInfo.env->CallStaticObjectMethod(methodInfo.classID, methodInfo.methodID);
    jstring retStr = (jstring)retObj;
    methodInfo.env->DeleteLocalRef(methodInfo.classID);
    return (JniHelper::jstring2string(retStr));        
}

On compiling i get the error

error: invalid conversion from ‘_jobject*’ to ‘_jstring*’

Can anyone please tell me how to solve this problem.

  • 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-06-16T18:34:26+00:00Added an answer on June 16, 2026 at 6:34 pm

    Here you go …

    const char* GetIDJni() {
    
        JniMethodInfo t;
    
            if (JniHelper::getStaticMethodInfo(t, CLASS_NAME, "GetIDJni", "()Ljava/lang/String;")) {
                jstring str = (jstring)t.env->CallStaticObjectMethod(t.classID, t.methodID);
                t.env->DeleteLocalRef(t.classID);
                CCString *ret = new CCString(JniHelper::jstring2string(str).c_str());
                ret->autorelease();
                t.env->DeleteLocalRef(str);
    
                return ret->m_sString.c_str();
            }
    
            return 0;
        }
    

    And if you want to get it return as std::String then

    std::string GetIDJni() {
      std::string ret;
    JniMethodInfo t;
    
        if (JniHelper::getStaticMethodInfo(t, CLASS_NAME, "GetIDJni", "()Ljava/lang/String;")) {
            jstring str = (jstring)t.env->CallStaticObjectMethod(t.classID, t.methodID);
            t.env->DeleteLocalRef(t.classID);
            ret=JniHelper::jstring2string(str);
            t.env->DeleteLocalRef(str);
    
            return ret;
        }
    
        return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im trying to make a function return a string from a ajax call. This
Hi friends, I am trying to get the string data and image data from
I'm trying to get a std::string from my database using mysql connexion Here is
I'm trying to get the query string from a string (not the current URL).
I'm trying to get a json string back from my controller, that is prefill-values
I am trying to get the the string this info inside this object lets
I'm trying to call a App.exe file (written in cpp) from matlab, that takes
I am getting the following error while trying to call a function in java
I'm trying to get a string from my managed code into my unmanaged code:
I'm trying to parse the xml document returned from this link but I get

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.