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 ...
0
votes
0answers
2 views
Using LAMEonJ mp3 encoder
Anyone got any examples of using this encoder? Examples are very sparse on the net. The bit that I can't understand is why when I'm running on a 32 bit JVM that it will only load a 32 bit version of ...
0
votes
0answers
16 views
IntBuffer or ByteBuffer as Parameter problems
Ok so I have this game and I wrote a JNI class that reads a buffer from a dll. So I pass a byteBuffer or intBuffer to the DLL and it fills it with pixels (RGB arrays).
I use it like so:
GLDXLoader ...
0
votes
2answers
44 views
UnsatisfiedLinkError when using a JNI native library from Grails application
I have an application where I need to use a Native Library: libfoo.so
My code is as follows:
Accessor.java:
public class Accessor {
static {
String path = "/usr/lib/libfoo.so";
...
5
votes
3answers
69 views
Java native code string ending
Does the string returned from the GetStringUTFChars() end with a null terminated character? Or do I need to determine the length using GetStringUTFLength and null terminate it myself?
2
votes
1answer
63 views
Do C++ objects in Android JNI native code invoke garbage collection?
So, I've got a conceptual question. I've been working with JNI on Android for the purposes of doing low-level audio "stuff." I've done plenty of audio coding in C/C++, so I figured that this would ...
0
votes
1answer
10 views
Which Windows Libraries are missing from the Visual C++ Redistributable Package?
I am using JNI to interface to a CAN driver I wrote using MSVC++ 2012. Everything compiles and runs fine - but only on my computer. Whenever I try to run on any other computer, I get the JNI ...
0
votes
1answer
16 views
How to compile JNI_CreateJavaVM
I have the following code. What is the command in LINUX to compile this piece of code. gcc ThisFile.C says JNI_VERSION_1_6 undeclared..
#include <stdio.h>
#include <jni.h>
#include ...
-1
votes
1answer
59 views
A correct way to convert byte[] in java to unsigned char* in C++, and vice versa?
I'm newbie in C++ and JNI, I try to find a correct way to convert byte[] in java to unsigned char* in C++ by using JNI, and vice versa ! (I'm working on android)
After looking for a solution in google ...
2
votes
1answer
37 views
+50
Android Camera takePicture is using Previews small buffer
I am developing a project using OPENCV. I have some process on onCameraFrame. While it shows previews, user can take a photo. But in some devices, I take an error after called takePicture(...) method. ...
1
vote
1answer
95 views
Converting Java Boolean array to C++ bool array
I am trying to convert a boolean array being passed to C++ from Java into just a bool array. However, regardless of what the boolean value is, it is always evaluated to true because the value is a ...
1
vote
0answers
15 views
Correct usage of DeleteLocalRef in JNI
Here is the sample jni method where I create a string and return it to the calling java method:
jstring
Java_com_example_hellojni_HelloJni_stringFromJNI( JNIEnv* env,
...
0
votes
0answers
17 views
is it possible to call c graphics program using javude JNI.
I m trying to call c graphics program using jni.
I m using tiny c compiler for compiling.
But while compiling it gives me an error like
C:/turboc++/include/graphics.h:248:';' expected
I m using ...
1
vote
2answers
25 views
JNI not found my other activityy
i have a application on java + c++.
IDE is - visual studio with android plugin.
i have 2 activity : 1-nativeActivity , 2- activity on java.
activity on java is main.
after java activity i start ...
1
vote
1answer
51 views
Access object created in java code from C++
What I eventually try to achieve is starting a java program from within C++ and then interact with it using JNI.
So I created a simple testing environment to fool around and to learn more about JNI ...
0
votes
0answers
20 views
Android :shared preference in jni
in my android application in need to access the shared memory between the two application ,i knew android kernel is not like Linux kernel to implement the shared memory concept ,so i have choosen the ...
1
vote
3answers
48 views
Linux, cancel blocking read()
In a multi-threaded Linux program used for serial communication, is it possible (and what would be the best approach) to terminate a blocking read() call from another thread?
I would like to keep ...
2
votes
1answer
41 views
JNI access violation when calling non static java method from C++
I'm trying to call a non static java method from c++.
Sample2.java:
public class Sample2 {
public int intMethod(int n) {
return n*n;
}
}
JNITest.cpp:
#include "stdafx.h"
#include ...
0
votes
0answers
19 views
JNI C function cannot be resolved in Android
I have a package named com.self.tryffmpeg.
There's a file MainActivity.java inside that package which declares two native functions from the C inside the JNI folder
static {
...
0
votes
2answers
40 views
How to call a Java function via JNI from a signal handler function in Android
My objective is to send a signal from kernel to a Android service running in the userspace.On receiving this signal, the service should make an IOCTL call back to the kernel. After it gets data from ...
0
votes
0answers
11 views
How to tokenize cpp file using clang + JNA?
I try to parse cpp file using libclang + JNA in order to do syntax highlighting.
First i should tokenise the file and then highlight tokens found.
JUnit method code:
private TranslationUnit ...
0
votes
1answer
24 views
Calling DeleteLocalRef in java native interface
I'm returning a jstring from a JNI method. I delete the local reference to it before returning the value.
JNIEXPORT jstring JNICALL TestJNIMethod( JNIEnv* env, jclass )
{
jstring test_string = ...
0
votes
1answer
28 views
OSGI cannot link to native method via JNI at runtime
I am trying to use a method from a DLL in a OSGI-bundle. The DLL gets loaded correctly in OSGI, but I still get an java unsatisfied link error, the native method is not found!
When deployed ...
2
votes
1answer
40 views
JNI UnsatisfiedLinkError… signature discrepancy?
In eclipse, on 64-bit windows, I am trying to get a JNI example working including trying out two methods of handling an in/out int argument. The program runs and executes sayHello(), but terminates ...
1
vote
0answers
22 views
Is there a way to interrupt a jni C++ assertion in java and print a stack trace for at least my java code?
I'm currently developing a game using libgdx (java) which in turns uses native C++ (box2d) libraries. Sometimes I get an assertion in box2d (C++ library). It takes all from five minutes to an hour ...
1
vote
0answers
43 views
Java with JNI running forever
I have a java program interfacing C libraries (molfile plugin of VMD,libmolfile_plugin.dll) using JNI. I wrote C code accessing the plugin and compiled as standalone and it works fine. Then I hooked ...
0
votes
1answer
37 views
Where to create jni folder in Android Studio
In Eclipse I create jni folder at the root of the project when I need to create native android methods. Where should I create this folder in Android Studio project?
0
votes
1answer
13 views
getting cannot create VM error from JVM
I have a C program which calls JNI.
In this we create JVM.
I am getting following error -
Can not create VM
This is not a regular error. Something this error goes away and starts coming again.
...
0
votes
1answer
37 views
Ouput to text file using C++ STL library in Android
I have an Android application that use JNI. In JNI I used C++ STL library to output some data into a text file.
This is the snippet code.
#include <iostream>
#include <fstream>
float ...
1
vote
2answers
32 views
Is there a JNI shared stubs implementation for x64?
There was this library that made C function call mappings in JNI easy. I think it was called shared stubs API or something like that, and it is described in the famous JNI book and used to be ...
0
votes
1answer
32 views
NDK: how to build a lib, so that app can work on arm(s), x86, etc.?
I never used c++ for android and NDK before. When I use it for - say - image processing I want to be sure app will work on all devices with android 2.2 and higher.
When I write for iPhone, xcode ...
0
votes
0answers
43 views
Calling a C++ Programm from Android with Java and JNI
I am working on an Android Java Platform and want to use a complete program that i developed in c++ to run.
The c++ program consists of several cpp files with headers.
My new Android project attaches ...
-1
votes
0answers
54 views
Compiling C++ programm on Ubuntu Linux and calling it by JNI
I'm assigned a task that to compile the C++ program (developed by others) to .so file on Ubuntu Linux server, and use JNI (Java Native Interface) to call it to meet my goal. I'm majored in Java ...
0
votes
2answers
34 views
OpenCV for Android: Simple example to convert Image to Greyscale
As a starter I just want to convert an Bitmap to greyscale via OpenCV. I have everything
running, but it crashes hard as soon as i want to convert the image to greyscale.
Can anyone help out? I hope ...
0
votes
0answers
28 views
UnsatisifiedLinkError - Unable to load dependent libraries
I have developed a Java applet that loads my C++ dll through the loadLibrary function. From there, my applet calls some native methods that are implemented in the C++ code. I have created an ...
0
votes
0answers
36 views
What is the best way to load files from an expansion file in the NDK
I wrote a native android app which use openGL ES and APK expansion file because it's greater than 50MB.
All my textures are in the .obb file and I load this in java (with APKExpansionSupport).
Here ...
0
votes
0answers
165 views
How to use Xperia Z camera in Burst Mode?
I'm trying to to trigger the camera on an Xperia Z device in burst mode programatically but with little success so far.
Here's what I've tried so far:
Installed the Sony Add-on SDK for Android but ...
0
votes
2answers
39 views
java.lang.UnsatisfiedLinkError using jni
class HelloWorld {
public native void print(); //native method
static //static initializer code
{
try{
String path = System.getProperty("java.library.path");
...
-2
votes
0answers
50 views
How do I make C++ class to java class [closed]
i'm using JNI to extend my API in Java, in order to make it accessible through C++
I'm creating wrapper classes for a Java
this is my c++ class.
how do I make this C++ class to java class for JNI?
...
3
votes
2answers
61 views
How to use JNI to call JAVA method from C
I want to use JNI (Java Native Interface) to call a specific java setter method, passing a short[] buffer into it as a parameter.
Java method implimentation looks as follows:
public void ...
0
votes
1answer
58 views
java.lang.ExceptionInInitializerError in Android Project
I'm trying to create an Android Application that can record a video and, during recording, it should capture frames in order to process them.
But when I try to run my app on my emulator (using ...
0
votes
2answers
71 views
+200
How to use a C library such as PJSIP on java?
is there a way to use and invoke method calls from a library compiled in C such as the PJSIP library?
i want to use and invoke calls from the pjsip lib that i have compiled but the obvious issue is ...
0
votes
1answer
33 views
When do methods like JNI GetDoubleArrayElements set isCopy to true or false?
When would the VM pin vs copy the arrays involved here?
If you want to minimize memory usage can you force a pin vs a copy?
-2
votes
1answer
41 views
getLineNumber() of StackTraceElement gives -1 value [closed]
I have a exe in C++, through it I am using a jar file through JNI layer utility. both C++ and Java have it's own separate logging functionality, I am facing a unique problem, while logging for Java ...
0
votes
1answer
38 views
Eclipse can't include opencv2 header files
I've created an Android Application Project in Eclipse Juno, and after I've added native support to this project (Android Tools -> Add Native Support). So Eclipse has added in the project ...
0
votes
1answer
44 views
JNI, C++ problems
I did an Opencv's application en windows and now I am using JNI to convert this code to Android but I am having some problems.
In concret my native code not do nothing.
This is my Java class where I ...
0
votes
2answers
47 views
java.lang.UnsatisfiedLinkError - JNI
I keep getting a java.lang.UnsatisfiedLinkError error every time I run my program. I have a native, a wrapper, and the program to call the native through the wrapper.
main.h
#ifndef __MAIN_H__
...
4
votes
1answer
62 views
How can we add animated/simple image as a top layer to video and export it as a single video in Android?
I need to merge images to video as an overlay and export it. I have found ways to create video from images using javacv but didn't find any jar or library which do add images as an overlay to ...
0
votes
1answer
35 views
How to set Heap Space for non executable JAR using JNI
Currently I am working on a mac application in which I am getting OutOfMemoryError frequently. Currently we are using non executable JAR file for our application so I cannot set heap size before ...
0
votes
3answers
87 views
Conversion of Java code to C -> call by JNI -> program stops running
I tried to convert this Java code:
// http://www.stanford.edu/class/ee368/Android/index.html
// Source: http://www.stanford.edu/class/ee368/Android/HelloViewfinder/Project.zip
private void ...
0
votes
0answers
34 views
Problems with JNI and C++
I did an Opencv's application en windows and now I am using JNI to convert this code to Android but I am having some problems.
In concret my native code not do nothing.
This is my Java class where I ...



