Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #7126
| From | Danno <danmwall-google@yahoo.com> |
|---|---|
| Newsgroups | comp.lang.java.programmer |
| Subject | JNI accessing a class that instantiates another class |
| Date | 2011-08-15 07:55 -0700 |
| Organization | http://groups.google.com |
| Message-ID | <d48afffd-0ff8-4cc4-a63b-45ffe01224e9@o11g2000yql.googlegroups.com> (permalink) |
I'm taking my first stab at JNI. I have a main Java class that instantiates another class. In my C++ code, I am using the FindClass function for the main class and calling the method in the main class using GetStaticMethodId/CallStaticIntMethod. The C++ code is successfully finding the Java class and calling the method that I specified in the GetStaticMethoId function. The only problem is, when the Java class attempts to create an instance of this second, inner class, it dies. I don't get an error, it just doesn't work. My question is... Do I need another FindClass statement for the second class even though the C++ code is not invoking the second class directly? If so, how would I do that? Thanks so much for your insight!
Back to comp.lang.java.programmer | Previous | Next — Next in thread | Find similar
JNI accessing a class that instantiates another class Danno <danmwall-google@yahoo.com> - 2011-08-15 07:55 -0700
Re: JNI accessing a class that instantiates another class Florian Weimer <fw@deneb.enyo.de> - 2011-08-15 19:06 +0200
Re: JNI accessing a class that instantiates another class Danno <danmwall-google@yahoo.com> - 2011-08-15 12:28 -0700
Re: JNI accessing a class that instantiates another class Florian Weimer <fw@deneb.enyo.de> - 2011-08-15 21:50 +0200
Re: JNI accessing a class that instantiates another class Roedy Green <see_website@mindprod.com.invalid> - 2011-08-15 15:10 -0700
csiph-web