1
vote
4answers
52 views
Invoking Apache-FOP from C++
Hi,
Has anyone experience or had problems implementing a JNI wrapper for apache FOP?
Bonus points:
Any other options for processing xsl-fo from C++?
3
votes
2answers
31 views
Calling Java library from Objective C on Mac
Hi guys,
I want to create native Mac OS X application using Cocoa + Objective C but I need to connect to proprietary data source, and for this, owner of the data source only provides Java library. So …
0
votes
0answers
3 views
Android - How to enable CheckJni for NDK development?
Hi.
Can someone please tell me if I'm missing something here?
I am trying the following commands in shell.
$ ./adb shell stop
$ ./adb shell setprop dalvik.vm.checkjni true
$ ./adb shell start
But …
0
votes
1answer
40 views
Debugging the JNI Source code in visual studio 2003 without using eclipse?
In visual studio 2003's project settings, I specified the java.exe as the program to execute when debugging. I set the working directory in which the JNI dlland JNI jar is available.
I set the class …
2
votes
3answers
917 views
How can I catch SIGSEGV (segmentation fault) and get a stack trace under JNI on Android?
I'm moving a project to the new Android Native Development Kit (i.e. JNI) and I'd like to catch SIGSEGV, should it occur (possibly also SIGILL, SIGABRT, SIGFPE) in order to present a nice crash …
1
vote
3answers
52 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 reason I am curious is …
1
vote
1answer
40 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 simple test program to …
1
vote
1answer
36 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++ library is not …
0
votes
0answers
6 views
Cant set java class object by JNI in android
I have trouble setting java object value in JNI. When run under debug mode, it always show this error:
DalvikVM[localhost:8664]
- Thread[,#.main] (suspended(exception RuntimeException))
I …
1
vote
1answer
29 views
OpenSolaris Brandz and JNI a good mix?
I'd like to run a java application on a OpenSolaris machine but this application uses a dll/so that I only have the linux binary. Can it be possible, and this is because I know nothing about the …
1
vote
1answer
33 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 normal Java process, …
0
votes
2answers
43 views
When are -framework and -I/System/…/Example.framework/Headers/ needed?
I am trying to compile a JNI library which uses carbon from the command line.
If I don't -I/System/.../JavaVM.Framework/Headers/, It can't find any of the jni types, and gives errors.
If I just …
0
votes
3answers
100 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 browser on our …
1
vote
2answers
282 views
How do I interpret this JVM fault?
I have a Java app that makes use of some native code, and it's faulting. I want to find out where it's faulting, but I'm not sure how to read the hs_err_pid dump file:
Native frames: (J=compiled …
1
vote
7answers
134 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...
The purpose of …
