Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
9answers
50k views

How to add native library to “java.library.path” with Eclipse launch (instead of overriding it)

I got a native library that needs to be added to java.library.path. With JVM argument -Djava.library.path=path... I can set the path as I want. My problem is that my other library (pentaho reporting) ...
6
votes
1answer
83 views

Where are the unit tests for “native” Java classes?

For "fun" I'm loosely porting a few Java classes to PHP (e.g. java.util.regex.Matcher), so I'd like to be able to run/port the unit tests for these: java.lang.StringBuilder java.util.regex.Pattern ...
4
votes
3answers
112 views

Isolating untrusted native code in Java

I have a piece of C library that I don't trust (in the sense that it might crash frequently). I am calling this from a Java process. To prevent the crash in C library bringing the whole Java app. ...
4
votes
2answers
6k views

Installing Tomcat 7 on Linux system with Native Library

How do you install native library for Tomcat 7.0 under Linux system such as CentOS?
4
votes
4answers
2k views

How to create native C++ library on Android?

I need to write a dynamic link library in C++ that is used by Java on Android. As I get, it should be .so library, but I don't know how to do that. I tried Cygwin, but it crashes: $ gcc 1.cpp ...
3
votes
3answers
2k views

How can I Java webstart multiple, dependent, native libraries?

Example: I have two shared objects (same should apply to .dlls). The first shared object is from a third-party library, we'll call it libA.so. I have wrapped some of this with JNI and created my own ...
2
votes
3answers
290 views

Exporting to Runnable jar with extra native code libraries in eclipse

I am having trouble exporting my java project from eclipse as a jar executable file. My java project uses an external library (its called jri). I have exported the jri.jar file and set the library ...
2
votes
4answers
261 views

Alternatives to setting java.library.path?

I have a Java program making some JNI calls to a native library ("mylib.so"). Whenever I want to run this program, from the command line, I must set java.library.path to the location of my library as ...
2
votes
1answer
7k views

Error occurred during initialization of VM

I'm getting the following error when running an executable I created on a 64-bit machine using C++ code: "Error occurred during initialization of VM Unable to load native library: Can't find ...
1
vote
0answers
59 views

Are plugins for Android's native Web Browser version dependent?

I've been trying the code Google provides with Android source code for a Browser Plugin, more specifically, following this README, ...
1
vote
3answers
183 views

Simple Game in C# with only native libraries

I could find a set of java 2D game tutorials and android game tutorials which uses only native graphics libraries. I'm looking for something similar in C# ( without DirectX or XNA) I found this game ...
1
vote
1answer
49 views

How do I build basic JNI app? [closed]

I followed examples from java.sun.com to build sample jni app, but I've got problems. I intend to use unix with gcc. How do I compile *.c file with native function to have library? What parameters ...
1
vote
2answers
1k views

Problem in accessing dll file from a Java program through JNA

I have a dll file and I am trying to call functions of it through a Java program through JNA But the problem is It is not able to locate my dll file and throwing the following exception: ...
1
vote
1answer
116 views

How can I bundle a library that includes nativelibraries in my JAR?

I made a project in Netbeans 6.8 and added a third-party library which included some nativelibraries. When I made a JAR of my project, only the third-party JAR was included; its nativelibrary was not. ...
0
votes
2answers
29 views

Is there a way to include native libraries in a JAR, like in Java Webstart, without using Webstart?

I'm working on a game that uses LWJGL and thus requires native libraries specific to each platform. On this page, the author shows how to use the <nativelib> tag with Java Webstart to include ...
0
votes
1answer
41 views

How to programmatically load librxtxSerial in Java

I started to play with arduino an interfacing it with Java, it was pretty straightforward, but now I would like to programmatically load the librxtxSerial native lib, and I can't figure out. Since I'm ...
0
votes
0answers
17 views

Building APK removes native library version number from filename

I have a legacy code that uses autotools to build shared libraries. These libraries need to be used in an Android application so I've created a simple Java class and JNI wrapper for it (as a shared ...
0
votes
1answer
35 views

Distributing a LWJGL Jar

I need help, I followed the following tutorial on setting up my project. http://lwjgl.org/wiki/index.php?title=Setting_Up_LWJGL_with_NetBeans And I added the following run command ...
0
votes
1answer
38 views

Accessing DLL methods with contain mulitple classes using JNA

I am new to accessing DLLs from Java using JNA,so forgive me if this is obvious to everyone! I need to access methods from a class within a DLL(which was written in VB) and cannot do this by just ...
0
votes
1answer
169 views

How to add shared library to my APK?

Pretty much exact duplicate of Add a native lib to an APK. Since there is no answers I decided to ask again. I have an Android project. I have an .so library built with android NDK. And I want to use ...
0
votes
0answers
87 views

Java and LD_LIBRARY_PATH

I am facing an issue when setting the native library path for a Java process (say, com.example.Main), launched via a simple bash script on a 64-bit CentOS 5 machine. The related script code is as ...
0
votes
0answers
67 views

Matlab Native Library error

Can someone help me solve this error? I'm calling a Java GUI inside Matlab for communication with camera via .dll file. I build Java classes (.jar file) with System. loadLibrary where specific .dll ...
0
votes
2answers
132 views

How to use platform architecture in Maven to determine dependency?

As the question states is there a nice way to use dependencies based on the platform architecture while building maven artefacts. I know about profiles and how to use them. For this special purpose i ...
0
votes
1answer
178 views

How to configure Eclipse project to compile both on Windows and Linux?

It's a simple OpenGL app. The problem is, JOGL needs native libraries, and I need to set "Native library location", which is different for Windows and Linux. Is it possible to share project settings ...
0
votes
1answer
337 views

Export Native library to external Package in Eclipse not working. is it a Bug?

I was about to report a but to Eclipse, but I was thinking to give this a chance here first: If I add an external package, the application cannot find the referenced native library, except in the ...