1
vote
3answers
48 views
Does ntdll.dll come standard with windows xp and windows vista?
Hello,
Does ntdll.dll come standard with windows xp and windows vista? I know that I have it on my windows xp machine, but am not sure that is standard with every machine.
The re …
1
vote
1answer
37 views
JNI Invocation API - NoClassDefFoundError (C/Java)
I am trying to get my feet wet with JNI because I have an application in C that needs to access a single Java library function (no C-equivalent library). I've written a very simpl …
1
vote
1answer
35 views
Is it possible to debug core dumps when using Java JNI?
My application is mostly Java but, for certain calculations, uses a C++ library. Our environment is Java 1.6 running on RedHat 3 (soon to be RedHat 5).
My problem is that the C++ …
0
votes
3answers
93 views
Calling a DLL from an Applet via JNI
I have a "proof of concept" piece of work that crosses over into some unfamiliar territory.
I'm tasked with connecting an EFTPOS machine to an application running as an applet in a …
1
vote
1answer
32 views
How to send signal to JVM created by JNI_CreateJavavm call?
Hello Guys
Is there any possibility that I can directly send signal to a Java virtual machine which is created by calling JVM_CreateJavavm in native C/C++ code?
e.g.:
For a nor …
0
votes
2answers
28 views
Java JNI stackfall prevention
I use Java JNI with Gdal. There are some server side applications built on top of the JNI bindings. The whole JVM stackfalls if there is an error in the JNI section.
What's the be …
0
votes
2answers
56 views
Does Java pass by reference or value to C when using JNI ( more specifically Android NDK)
Does Java pass by reference or value to C when using JNI ( more specifically Android NDK)
1
vote
3answers
90 views
Wrapping an existing application with JNI
Most of the documentation that details how to get started with JNI described how to build a new JNI application using X-Code. Can anyone link me to a description of how to use JNI …
1
vote
1answer
65 views
Returning a C++ class to Java via JNI
Hello,
I'm currently using both C++ and Java in a project and I'd like to be able to send an object which is contained in C++ to my Java interface in order to modify it via a GUI …
1
vote
5answers
95 views
Is it possible to generate a DLL using Turbo C/C++ compiler ??
I need this for calling a C function from Java class (JNI) and I know that there are options to do this using "Microsoft Visual C++ compiler". (explained here)
But I am interested …
0
votes
2answers
84 views
Is there a cross platform way of handling named pipes in Java or should I write my own?
I'm writing a bit of JNI code where a DLL running in the process space of various processes on the system needs to talk back to a java process. I've decided to use named pipes to …
0
votes
2answers
108 views
Can I mix JNI headers implementation with normal C++ classes?
If I try to implement my class on this file I get an error UnsatisfiedLinkError, however if I remove the implementation of the Broker.h Class it goes ok. Why?
Broker.h
#include " …
2
votes
1answer
208 views
How to return array from JNI to java?
Hello, I am a beginner programmer and I am attempting to use the android NDK.
Is there a way to return an array (in my case an int[]) created in JNI to java? If so, please provid …
2
votes
3answers
182 views
Passing pointers between C and Java through JNI
At the moment, i'm trying to create a Java-application which uses CUDA-functionality. The connection between CUDA and Java works fine, but i've got another problem and wanted to as …
1
vote
3answers
229 views
Developing JNI applications with Eclipse (Combined Java/C++)
Hello.
Have anyone successfully managed to setup a combined Java/C++ project for Eclipse?
What I am trying to do is quite simple;
1) Compile my Java sources
2) Run Javah to crea …
