1
vote
1answer
29 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++ …
1
vote
1answer
25 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
3answers
70 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 …
0
votes
2answers
23 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
53 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
1answer
55 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
3answers
80 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
5answers
90 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
80 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
101 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
184 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
159 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
202 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 …
1
vote
7answers
126 views
Profile CPU usage in Java on a Mac
I'm looking for a way to measure the cpu usage for different methods in my java code. I understand that this can be achieved using JNI and C, but I wouldn't know where to start... …
1
vote
0answers
87 views
How to implement a Google-chrome-like title bar for Java SWT application
I have inherited development of a Java/SWT application running on Windows only. One of the feature requests that I need to scope is a Google-chrome-type title bar in place of the …
