Tagged Questions
The Java Native Interface (JNI) gives both the ability for JVM implementations to run system native code, and the ability for native code to run Java code (by creating new JVM instances). The most common target languages for JNI are C and C++, for which at least the Sun/Oracle JDK implementations provide helper commands (javap, javah).
37
votes
2answers
587 views
What makes JNI calls slow?
I know that 'crossing boundaries' when making a JNI call in Java is slow.
However I want to know what is it that makes it slow?
What does the underlying jvm implementation do when making a JNI call ...
25
votes
3answers
3k views
Create an android RFCOMM socket without any input from the user. How?
Here s the scenario.
I need to write an application for android to create a RFCOMM socket to a pc with a BT dongle (I'm going to write the server too).
My requirement is that the user doesn't have ...
23
votes
4answers
547 views
How can I redirect JNI console output to Eclipse Console view, when Eclipse plugin uses JNI?
I have an Eclipse plugin (A) which has a dependency on another plugin (B). Plugin B is simply a wrapper around a jar, which contains a native dll, and performs jni functionality.
Given this setup, I ...
19
votes
4answers
3k views
Underlying technique of Android's FaceDetector
I'm implementing a face tracker on Android, and as a literature study, would like to identify the underlying technique of Android's FaceDetector.
Simply put: I want to understand how the ...
19
votes
5answers
4k views
Pinning a Java application to the Windows 7 taskbar
Original question
I use Launch4j as a wrapper for my Java application under Windows 7, which, to my understanding, in essence forks an instance of javaw.exe that in turn interprets the Java code. As ...
18
votes
4answers
12k 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 ...
17
votes
7answers
915 views
Long lived Java WeakReferences
I am currently trying to diagnose a slow memory leak in my application. The facts I have so far are as follows.
I have a heap dump from a 4 day run of the application.
This heap dump contains ~800 ...
17
votes
4answers
2k views
Access C++ shared library from Java: JNI, JNA, CNI, or SWIG?
Which of the following (or other) method would you recommend for accessing a C++ shared library from Java and why?
JNI: I hear this has a number of pitfalls and is quite the undertaking?
SWIG: ...
16
votes
6answers
7k views
Use JNI instead of JNA to call native code?
JNA seems a fair bit easier to use to call native code compared to JNI. In what cases would you use JNI over JNA?
15
votes
2answers
449 views
Native code - how to get function call stack (backtrace) programatically
I have C++ codebase running on Android, and want to have crash reports sent by users.
I'm using ACRA library which works fine for Java code, but when something crashes in native code, I don't get ...
14
votes
9answers
12k views
Calling C# code from Java?
Does anyone have a good solution for integrating some C# code into a java application?
The code is small, so I could re-write in java, but I would rather reuse the code if possible. Don't repeat ...
13
votes
4answers
286 views
Catching exceptions thrown from native code running on Android
The project I'm currently working on requires me to code up the android portion of a cross platform program implementation.
A core set of functionality is built and included in my app through ...
13
votes
2answers
389 views
Filling the data in an Android bitmap as quickly as possible from C
I've managed to get an android.graphics.Bitmap created and I'm successfully filling it via the SetPixels command.
The problem is that I start off with RGBA data. I then create a jintArray. I then ...
13
votes
1answer
11k views
How to return an array from JNI to Java?
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 provide a quick example of the JNI function that would do this.
...
13
votes
1answer
2k views
Best way to throw exceptions in JNI code?
I'd like a consistent and simple way to throw exceptions in JNI code; something that handles chained exceptions (implicitly from the env->ExceptionOccurred method, or explicitly by parameters, either ...
12
votes
9answers
394 views
Looking for a convenient way to call Java from C++
It seems most documentation or helper libraries relating to JNI (Java Native Interface) are concerned with calling native code from Java. This seems to be the main use of it, even though it is capable ...
12
votes
4answers
2k views
How to bundle a native library and a JNI library inside a JAR?
The library in question is Tokyo Cabinet.
I want is to have the native library, JNI library, and all Java API classes in one JAR file to avoid redistribution headaches.
There seems to be an attempt ...
11
votes
0answers
539 views
FFmpeg sample code for creating a video file from still images JNI Android
How i modify the following FFMPEG sample code for creating a video file from still images that i am having in my android phone. I am using JNI for invoking ffmpeg.
JNIEXPORT void JNICALL ...
11
votes
3answers
3k views
How to pass C structs back and forth to Java code in JNI?
I've got some C functions which I am calling through JNI which take a pointer to a structure, and some other functions which will allocate/free a pointer to the same type of structure so that it is a ...
11
votes
11answers
2k views
Rewrite C code in Java or use JNI?
I'm currently developing on a project written in Java. We have a bunch of algorithms written in C/C++ (at least a couple hundred) that need to be incorporated in our project. Our two options are to ...
11
votes
6answers
11k views
In Java Swing how do you get a Win32 window handle (hwnd) reference to a window?
In Java 1.4 you could use ((SunToolkit) Toolkit.getDefaultToolkit()).getNativeWindowHandleFromComponent() but that was removed.
It looks like you have to use JNI to do this now. Do you have the JNI ...
10
votes
2answers
381 views
Calling C# method within a Java program
C# methods cannot be called directly in Java using JNI due to different reasons. So first we have to write a wrapper for C# using C++ then create the dll and use it through JNI in Java.
I have ...
10
votes
1answer
325 views
Does Android's JNI JavaScript binding efficiently pass TypedArray / ArrayBuffer to Java as an array?
In the Android JNI binding, you can expose a Java method such as method(int[] intArray) {} to JavaScript, pass it a JavaScript array, and expect the binding to convert that JavaScript array to int[]. ...
10
votes
2answers
868 views
How do JavaCL and JogAmp JOCL compare?
JavaCL uses JNA, JOCL uses JNI instead, so I expect JavaCL to show better cross-platform compatibility, while JOCL should generally turn out to have better performance. JOCL gets tested alongside ...
10
votes
2answers
470 views
Profiling Java running by JNI calls
I have a C++ code that upon execution:
Loads JVM (I have full control on how to load the JVM), and call Java methods (from loaded classes) using C JNI code. The Java code has no Main() and it is ...
10
votes
3answers
5k views
Calling Win32 API method from Java
I need to call some methods in Wininet.dll from a Java program.
I can find plenty of tutorials on how to call a new DLL that I create from Java, but I can't seem to find any tutorials on how to call ...
10
votes
4answers
17k views
File Operations in Android NDK
I am using the Android NDK to make an application primarily in C for performance reasons, but it appears that file operations such as fopen do not work correctly in Android. Whenever I try to use ...
10
votes
5answers
6k 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 ask, if my thoughts ...
10
votes
3answers
5k views
JNI dependent libraries
I'm running a library via JNI (I didn't write it), and internally it calls another DLL. I get an error saying "Can't find dependent libraries" unless I put the path of the other DLL on the system PATH ...
10
votes
6answers
3k views
Performance / stability of a Memory Mapped file - Native or MappedByteBuffer - vs. plain ol' FileOutputStream
I support a legacy Java application that uses flat files (plain text) for persistence. Due to the nature of the application, the size of these files can reach 100s MB per day, and often the limiting ...
9
votes
1answer
98 views
What are the consequences if we try to attach a Native Thread permanently to the DVM (JVM)?
Is it feasible to attach a native thread permanently to the JVM (AttachCurrentThread) (or) is it better to attach when ever required (calling java functions) and detach immediately once the work is ...
9
votes
0answers
130 views
ndk-stack not working
I am invoking ndk-stack as follows:
cat file_temp | ~/workspace/android-ndk-r6b/ndk-stack -sym /home/xyz/trunk/apk/obj/local/armeabi/
It finds the crash fingerprint but fails to show me the stack ...
9
votes
1answer
262 views
Ending a Java thread in C (JNI)
Dear multithreading/Java/C/JNI gurus,
I have a slightly specific problem. I have a Java program that spawns threads. In the run() method, a call to C is made (via JNI), where at first, thread local ...
9
votes
2answers
2k views
How can I effectively debug C code that's wrapped with JNI in Eclipse? (Android Dev)
I've got a segfault but I have absolutely no idea how to locate it.
Tips?
9
votes
12answers
842 views
As a Java developer, C or C++?
I've been writing Java professionally for the last 5 years. Recently, I've had to dig into JNI a bit to call some Windows specific functions.
This experience has highlighted my poor command of the C ...
8
votes
2answers
338 views
SWIG (v1.3.29) generated C++ to Java Vector class not acting properly
I have some native C++ code that I'm converting to Java using SWIG so that my Java application can use it. In particular there are some functions that return std::vector. Here's a snippet of my ...
8
votes
2answers
450 views
Include Boost C++ library in android
1 everybody,
I have been trying to marry Boost and android on windows for long time and tried lot of approaches but still no luck. I want to make a sample program using Boost library in android. I am ...
8
votes
2answers
194 views
Java Native Interface beginners problem
I have been following this tutorial, and at step 5, I am getting the following output from GCC:
HelloWorld.c:1:17: error: jni.h: No such file or directory
In file included from ...
8
votes
1answer
856 views
JNI: From C code to Java and JNI
Background
I am developing an application for android in eclipse and now I have a problem and I need your help. So I must Call function written in C from JAVA application. But on my way of writing ...
8
votes
1answer
5k views
Calling a java method from c++ in Android
THE SOLUTION TO THIS PROBLEM IS IN THE BOTTOM OF THE QUESTION!
Hi. I'm trying to get a simple java method call from c++ while java calls native method. So, here's the java code:
public class ...
8
votes
4answers
376 views
What happens when I throw a C++ exception from a native Java method?
Suppose I'm embedding Sun's JVM in a C++ application. Through JNI I call a Java method (my own), which in turns calls a native method I implemented in a shared library.
What happens if this native ...
8
votes
3answers
222 views
Using D to program to the Java Native Interface
I've been looking at the D programming language and it looks like a lot of fun to try for someone already proficient in C++.
Can I use D to program to the Java Native Interface which is a C ...
8
votes
3answers
3k views
Android - failure on loading library
I have a similar problem to this question, but slightly different. I have compiled a .so library to use with JNI. Because it is large (15 MB), I am putting it on the SDCard instead of in the ...
8
votes
5answers
1k views
Using a java socket from JNI / C++ code
I have a java app that creates a socket to talk to a server process, eg new java.net.Socket(String host, int port). This app includes a bunch of legacy c++ code that needs to suck gobs of data from ...
8
votes
4answers
5k views
How to import a class from default package
Possible Duplicate: How to access java-classes in the default-package?
I am using Eclipse 3.5 and I have created a project with some package structure along with the default package. I have one ...
8
votes
3answers
1k views
Is there a Java library of Unix functions?
I am looking for a Java library to interface with standard Unix functions, i.e. stat(), getpwuid(), readlink().
This used to exist, and was called javaunix. It was released back in 2000. See this ...
8
votes
4answers
6k views
Getting Java and TWAIN to play together nicely
I'm working on building an app to scan directly from TWAIN scanner to a Java applet. I'm already aware of Morena and JTwain, but they cost money. I need free. I could re-invent the wheel with JNI, but ...
7
votes
1answer
103 views
Is the Java Native Interface (JNI) affected by C++ ABI compatibility issues?
Is the Java Native Interface (JNI) affected by C++ ABI compatibility issues?
I am developing a Java application. I would like to use the Java Native Interface (JNI) to call functions in a C++ ...
7
votes
2answers
169 views
How to know whether it is a memory leak or not when calling native code in Java?
I am calling a native function in my main and it is inside a while loop.
public static void main (String[] args) throws Throwable {
testDLL test = new testDLL();
String ar[];
...
7
votes
2answers
180 views
Set/Get Java List<> from C code
Java Code
In Java code I have class called IdentificationResult which has 3 members:
enrollmentID
enrollmentSettings
identParams.
Here is the class:
package com.vito.android.framework.service;
...