active questions tagged jni - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T04:17:18Z http://stackoverflow.com/feeds/tag/jni http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1297716/debugging-the-jni-source-code-in-visual-studio-2003-without-using-eclipse 0 Debugging the JNI Source code in visual studio 2003 without using eclipse? meme 2009-08-19T03:42:31Z 2009-11-28T00:00:01Z <p>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.</p> <p>I set the class paths and the command line arguments which I would pass to java in the program arguments.</p> <p>The java file which I am using is compiled with the JNI jar file. In the java file I am trying to connect to a particualr driver using the following code. Driver d = (Driver)Class.forName(drivername).newInstance();</p> <p>// GET CONNECTION con = DriverManager.getConnection(URL,user,password);</p> <p>When running the java file in Visual studio I get the error "driver name not found".The visual studio not loading the jar file properly. How to resolve this problem without using eclipse?</p> <p>Thanks in Advance.</p> http://stackoverflow.com/questions/1083154/how-can-i-catch-sigsegv-segmentation-fault-and-get-a-stack-trace-under-jni-on-a 2 How can I catch SIGSEGV (segmentation fault) and get a stack trace under JNI on Android? cmb 2009-07-04T23:18:18Z 2009-11-27T21:30:28Z <p>I'm moving <a href="http://chris.boyle.name/projects/android-puzzles" rel="nofollow">a project</a> 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 reporting dialog, instead of (or before) what currently happens: the immediate unceremonious death of the process and possibly some attempt by the OS to restart it. (<b>Edit:</b> The JVM/Dalvik VM catches the signal and logs a stack trace and other useful information; I just want to offer the user the option to email that info to me really.) </p> <p>The situation is: a large body of C code which I didn't write does most of the work in this application (all the game logic) and although it's well-tested on numerous other platforms, it's entirely possible that I, in my Android port, will feed it garbage and cause a crash in native code, so I want the crash dumps (both native and Java) that currently show up in the Android log (I guess it would be stderr in a non-Android situation). I'm free to modify both C and Java code arbitrarily, although the callbacks (both going in and coming out of JNI) number about 40 and obviously, bonus points for small diffs.</p> <p>I've heard of the signal chaining library in J2SE, libjsig.so, and if I could safely install a signal handler like that on Android, that would solve the catching part of my question, but I see no such library for Android/Dalvik.</p> http://stackoverflow.com/questions/1799547/does-ntdll-dll-come-standard-with-windows-xp-and-windows-vista 1 Does ntdll.dll come standard with windows xp and windows vista? stjowa 2009-11-25T19:55:19Z 2009-11-25T21:04:29Z <p>Hello,</p> <p>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.</p> <p>The reason I am curious is for the NTQuerySystemInformation function to get CPU usage of a windows xp and/or windows vista system.</p> <p>Thanks,</p> <p>Steve</p> http://stackoverflow.com/questions/1783618/jni-invocation-api-noclassdeffounderror-c-java 1 JNI Invocation API - NoClassDefFoundError (C/Java) HalfBrian 2009-11-23T14:55:24Z 2009-11-23T15:12:48Z <p>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 load a Java VM from C and call a static function and get the return value.</p> <p>Unfortunately, I am unable to get the class to properly load. Although it will probably boil down to it, I think my ClassPath is correct: when I use the <code>java</code> command with the same ClassPath in the same directory, the class loads and executes perfectly.</p> <p>Environment:<br> Ubuntu 8.04 server<br> Java JRE&amp;SDK 1.6<br> gcc</p> <p>My present working directory is always <code>/home/me/project</code>.</p> <p>Here is what I get when I run the <code>java</code> command (<code>java -Djava.class.path=/home/me/project/ -verbose my.ClassABC</code>):</p> <pre><code>[Loaded ...] (many loads) [Loaded my.ClassABC from file:/home/me/project/] Hello test [Loaded java.lang.Shutdown from shared objects file] [Loaded java.lang.Shutdown$Lock from shared objects file] </code></pre> <p>Here is what I get when I run my C program (<code>./myClassABC</code>):</p> <pre><code>[Loaded ...] [Loaded my.ClassABC from file:/home/me/project/] Exception in thread "main" java.lang.NoClassDefFoundError: my.ClassABC Failed to get class </code></pre> <p>Here is my gcc command line:</p> <p><code>gcc -o myClassABC myClassABC.c -I/usr/lib/jvm/java-6-sun-1.6.0.16/include/ -I/usr/lib/jvm/java-6-sun-1.6.0.16/include/linux -L/usr/lib/jvm/java-6-sun-1.6.0.16/jre/lib/i386/server/ -ljvm</code></p> <p>My C code (<code>myClassABC.c</code>):</p> <pre><code>int main(int argc,char **argv) { JNIEnv *env; JavaVM *jvm; jint res; jclass cls; jmethodID mid; jstring jstr; jclass stringClass; jobjectArray args; JavaVMInitArgs vm_args; JavaVMOption options[2]; options[0].optionString = "-Djava.class.path=."; // or "-Djava.class.path=/home/me/project/"; options[1].optionString = "-verbose"; vm_args.version = JNI_VERSION_1_6; vm_args.options = options; vm_args.nOptions = 2; vm_args.ignoreUnrecognized = JNI_FALSE; /* Create the Java VM */ res = JNI_CreateJavaVM(&amp;jvm, (void**)&amp;env, &amp;vm_args); if (res &lt; 0) { fprintf(stderr, "Can't create Java VM\n"); exit(1); } if ((*env)-&gt;ExceptionOccurred(env)) { (*env)-&gt;ExceptionDescribe(env); } cls = (*env)-&gt;FindClass(env,"my.ClassABC"); if (cls == NULL) { if ((*env)-&gt;ExceptionOccurred(env)) { (*env)-&gt;ExceptionDescribe(env); } printf("Failed to get class\n"); exit(1); } [call methods, etc.] } </code></pre> <p>And my java code, just for #$%@s and giggles (gets compiled to <code>/home/me/project/my/ClassABC.class</code>):</p> <pre><code>package my; class ClassABC { public static void main(String[] args) { System.out.println(ClassABC.getPassword("test")); return; } static String getPassword(String filename) { return "Hello "+filename; } } </code></pre> <p>Thanks,<br> Brian</p> http://stackoverflow.com/questions/1763368/is-it-possible-to-debug-core-dumps-when-using-java-jni 1 Is it possible to debug core dumps when using Java JNI? philharvey 2009-11-19T13:39:46Z 2009-11-19T14:05:26Z <p>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).</p> <p>My problem is that the C++ library is not thread-safe. To work around this, we run multiple, single-threaded "worker" processes and give them work to do from a central Work Manager, also written in C++. Our Java application calls the C++ Work Manager via a third-party product.</p> <p>For various reasons, we want to re-write the C++ Work Manager and workers. I'm in favour of writing them all in Java, using JNI in each worker to call the C++ library.</p> <p>The main problem is what happens if the C++ library core dumps. Unfortunately, this is quite common, and we need to be able to see which line in our C++ library caused the problem, e.g. by examining a backtrace in something like GDB.</p> <p>My colleagues believe that it will be impossible to analyse the core dumps, because tools like GDB don't understand core files produced by Java.</p> <p>I hope that they're wrong, but I need to be sure before pushing my ideas further.</p> <p>What is the best way to analyse a core dump produced from Java/JNI?</p> http://stackoverflow.com/questions/1761759/cant-set-java-class-object-by-jni-in-android 0 Cant set java class object by JNI in android JustNeo 2009-11-19T08:30:10Z 2009-11-19T08:40:58Z <p>I have trouble setting java object value in JNI. When run under debug mode, it always show this error: </p> <p>DalvikVM[localhost:8664] - Thread[,#.main] (suspended(exception RuntimeException))</p> <p>I don't know what's wrong with it. Can someone please help me out here. Many thanks in advance.</p> <p>Below are my code:</p> <p><strong>[Data class]</strong></p> <p>package com.lib; public class Data {</p> <p>public Data() {}</p> <p>public int a;</p> <p>}</p> <p><strong>[main java]</strong></p> <p>import com.lib.Data;</p> <p>public class lib extends Activity {</p> <p>/** Called when the activity is first created. */</p> <p>@Override</p> <p>public void onCreate(Bundle savedInstanceState) {</p> <p>super.onCreate(savedInstanceState);</p> <p>Data d = new Data();<br> d.a = 2; Set(d);</p> <p>TextView tv = new TextView(this); tv.setText(d.a); }</p> <p>static{ System.loadLibrary("Lib"); }</p> <p>public static native void Set(Data d); }</p> <p><strong>[Jni implementation]</strong></p> <p>extern "C" {</p> <p>JNIEXPORT void JNICALL Java_com_lib_lib_Set(JNIEnv* env, jclass c, jobject obj) {</p> <p>jclass cls = env->GetObjectClass(obj);</p> <p>jfieldID fid = env->GetFieldID(cls, "a", "I");</p> <p>jint ret = 4;</p> <p>env->SetIntField(obj, fid, ret); } }</p> http://stackoverflow.com/questions/922772/opensolaris-brandz-and-jni-a-good-mix 1 OpenSolaris Brandz and JNI a good mix? Paulo Lopes 2009-05-28T19:34:43Z 2009-11-18T01:36:55Z <p>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 OpenSolaris Brandz feature, that I can deploy the dll on a linux brandz and link to it from a jvm running on the OpenSolaris side?</p> http://stackoverflow.com/questions/1740837/how-to-send-signal-to-jvm-created-by-jnicreatejavavm-call 1 How to send signal to JVM created by JNI_CreateJavavm call? Ripley 2009-11-16T08:32:34Z 2009-11-16T23:05:59Z <p>Hello Guys</p> <p>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? </p> <p>e.g.:</p> <p>For a normal Java process, say its pid is 12345, I can send a signal 3 to it like this ... kill -3 12345, and hopefully I could trigger javacore or heapdump by changing JVM configurations.</p> <p>However if the JVM is created thru JNI API and wrapped inside a C/C++ application, only the native process's PID is visible, in that case if I send signal to that process, the whole process is just terminated and seems the JVM cannot receive the signal at all.</p> <p>Thanks in advance ...</p> http://stackoverflow.com/questions/1191950/when-are-framework-and-i-system-example-framework-headers-needed 0 When are -framework and -I/System/.../Example.framework/Headers/ needed? unknown (google) 2009-07-28T04:36:04Z 2009-11-13T19:09:42Z <p>I am trying to compile a JNI library which uses carbon from the command line.</p> <p>If I don't -I/System/.../JavaVM.Framework/Headers/, It can't find any of the jni types, and gives errors.</p> <p>If I just -I/System/.../FlatCarbon.framework/Headers but don't "-framework Carbon", it compiles fine, but the linker gives an error about an undefined symbol.</p> <p>If I compile with -framework Carbon, it works fine, but it turns out that the -I.../FlatCarbon.framework/Headers/ was entirely unnecessary! It works the same with or without it. Now, everything up till now makes sense, except for what follows:</p> <p>If I -framework JavaVM, but <strong>don't</strong> include the header directory, then can't find the jni types!</p> <p>It seems utterly inconsistent. For one framework, the -I is required, and the -framework is optional, for the other, the -framework is required, and the -I is optional. How is this so? Could someone explain how the -framework option works? Is JavaVM a special case?</p> <p>I am partially posting this question out of curiosity, but also to help anyone else who was searching for a similar solution, because at least with my google-fu, I wasn't able to find anything explaining frameworks from the command line, or how to link to system libraries with gcc on the command line. gcc --help doesn't even document -framework, and everything I could find was about developing with xcode.</p> http://stackoverflow.com/questions/1713403/calling-a-dll-from-an-applet-via-jni 0 Calling a DLL from an Applet via JNI mcottle 2009-11-11T06:20:55Z 2009-11-13T17:58:13Z <p>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 intranet.</p> <p>I've ignored the EFTPOS dll for the moment and created a simple JNI decorated DLL in my language of choice (Delphi) that just logs a string to a text file in c:\ and I can call it successfully from a local Java application.</p> <p>However, when I create an applet to do the same thing, compile it into a .JAR, sign the JAR &amp; try to call the method in the applet via Javascript on a web page it fails.</p> <p>A senior Java guy I'm working with doesn't think it will be possible to get this to work because it's inherently "evil" to allow an applet to do this.</p> <p>There is an entry you can put in a java.policy file to allow loadLibrary. as well as allPermission &amp; I've tried a whole host of variations along those lines all to no avail producing the following error trace in the Java Console:</p> <pre><code>java.lang.ExceptionInInitializerError at app.TestApplet.LogAString(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at sun.plugin.javascript.JSInvoke.invoke(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at sun.plugin.javascript.JSClassLoader.invoke(Unknown Source) at sun.plugin.com.MethodDispatcher.invoke(Unknown Source) at sun.plugin.com.DispatchImpl.invokeImpl(Unknown Source) at sun.plugin.com.DispatchImpl$1.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at sun.plugin.com.DispatchImpl.invoke(Unknown Source) Caused by: java.security.AccessControlException: access denied (java.lang.RuntimePermission loadLibrary.DLoggerImpl) at java.security.AccessControlContext.checkPermission(Unknown Source) at java.security.AccessController.checkPermission(Unknown Source) at java.lang.SecurityManager.checkPermission(Unknown Source) at java.lang.SecurityManager.checkLink(Unknown Source) at java.lang.Runtime.loadLibrary0(Unknown Source) at java.lang.System.loadLibrary(Unknown Source) at app.DLogger.&lt;clinit&gt;(Unknown Source) ... 16 more java.lang.Exception: java.lang.ExceptionInInitializerError at sun.plugin.com.DispatchImpl.invokeImpl(Unknown Source) at sun.plugin.com.DispatchImpl$1.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at sun.plugin.com.DispatchImpl.invoke(Unknown Source) </code></pre> <p>The key line seems to be "Caused by: java.security.AccessControlException: access denied (java.lang.RuntimePermission loadLibrary.DLoggerImpl)" which implies a permissions problem. It could be that I'm getting the policy file wrong - or the signing wrong - or stuff like that or it could be that Java is hardwired to not allow those sort of permissions for an Applet because of the security risk.</p> <p>My question is am I wasting my time? Can it be done &amp; if so, how?</p> <p>Thanks in anticipation</p> <p>Mike</p> http://stackoverflow.com/questions/592520/how-do-i-interpret-this-jvm-fault 1 How do I interpret this JVM fault? Chris R 2009-02-26T21:28:04Z 2009-11-13T13:07:33Z <p>I have a Java app that makes use of some native code, and it's faulting. I want to find out <em>where</em> it's faulting, but I'm not sure how to read the hs_err_pid dump file:</p> <pre><code>Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) V [libjvm.so+0x256cbc] V [libjvm.so+0x25df69] V [libjvm.so+0x25dbac] V [libjvm.so+0x25e8c8] V [libjvm.so+0x25e49f] V [libjvm.so+0x16fa3e] j br.com.cip.spb.single.SPBRequestApplicationController.processJob(Lcom/planet/core360/docgen/ProcessingEnvironment;Lcom/planet/core360/dsmv2/processing/ApplicationDataJob;)V+158 j com.planet.core360.cgen.CgenProcessor.processJob(Ljava/lang/String;Lcom/planet/core360/docgen/ProcessingEnvironment;Lcom/planet/core360/dsmv2/processing/ApplicationDataJob;)V+108 j com.planet.core360.cgen.CgenProcessor.processJob(Ljava/lang/String;Lcom/planet/core360/docgen/ProcessingEnvironment;Lcom/planet/core360/dsmv2/processing/ScheduledJob;)V+7 v ~StubRoutines::call_stub V [libjvm.so+0x17af0c] V [libjvm.so+0x28b9d8] V [libjvm.so+0x17ad3f] V [libjvm.so+0x1a58a3] V [libjvm.so+0x18bc24] C [cgen+0xa6d6] C [cgen+0xae1e] cgen_process_job+0x336 C [cgen+0x10442] C [cgen+0x7714] C [cgen+0x38216] C [cgen+0x3a29d] C [cgen+0x37e3c] C [cgen+0x7558] C [libc.so.6+0x166e5] __libc_start_main+0xe5 </code></pre> <p>Basically, what are the 'j' frames pointing to? Is <code>V+158</code> referring to the bytecode offset in the class? How can I trace back from this to the source lines in play?</p> <p>Actually, I'd love a general guide to grokking these dumps. That'd be fantastic, too.</p> http://stackoverflow.com/questions/1524908/profile-cpu-usage-in-java-on-a-mac 1 Profile CPU usage in Java on a Mac Robert 2009-10-06T10:56:11Z 2009-11-12T15:25:18Z <p>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... </p> <p>The purpose of this is to compare different algorithms, and provide qualitative results.</p> http://stackoverflow.com/questions/1721560/java-jni-stackfall-prevention 0 Java JNI stackfall prevention whatnick 2009-11-12T11:25:06Z 2009-11-12T11:41:45Z <p>I use Java JNI with <a href="http://www.gdal.org/" rel="nofollow">Gdal</a>. 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.</p> <p>What's the best way of testing that a c/c++ library does not contain fatal errors which will cause JVM stackfall ? What is the best practice to cleanly deal with errors which do arise ?</p> http://stackoverflow.com/questions/1711490/returning-a-c-class-to-java-via-jni 1 Returning a C++ class to Java via JNI tomzx 2009-11-10T21:51:32Z 2009-11-10T22:06:02Z <p>Hello,</p> <p>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 and then send the modification back in C++.</p> <p>So far I've been returning either nothing, an int or a boolean to Java via the JNI interface. This time I have to send an object through the interface. I have made similar class definition available both in C++ and in Java. <strong>I'd like to know how I'd go about creating the object so that I can use it in Java.</strong></p> <p>In C++ I have:</p> <pre><code>JNIEXPORT MyObject JNICALL Java_ca_X_Y_Z_C_1getMyObject(JNIEnv* env, jclass, jint number); </code></pre> <p>This function would get called by Java in order to get the object from the C++ side (the object is contained in a singleton, easily accessible).</p> <p>On the Java end, I do a simple call to this method,</p> <pre><code>MyObject anObject = C_getMyObject(3); </code></pre> <p>which should return me the newly created object.</p> <p>Java currently returns me a UnsatisfiedLinkError when I do the actual call. What is wrong?</p> http://stackoverflow.com/questions/1697904/does-java-pass-by-reference-or-value-to-c-when-using-jni-more-specifically-andr 0 Does Java pass by reference or value to C when using JNI ( more specifically Android NDK) Faisal Abid 2009-11-08T20:56:04Z 2009-11-08T21:21:56Z <p>Does Java pass by reference or value to C when using JNI ( more specifically Android NDK)</p> http://stackoverflow.com/questions/1627152/can-i-mix-jni-headers-implementation-with-normal-c-classes 0 Can I mix JNI headers implementation with normal C++ classes? Marcos Roriz 2009-10-26T20:27:35Z 2009-11-08T13:07:14Z <p>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?</p> <p>Broker.h</p> <pre><code>#include "XletTable.h" #ifndef BROKER_H_ #define BROKER_H_ class Broker { private: static Broker* brokerSingleton; static XletTable *table; // Private constructor for singleton Broker(JNIEnv *, XletTable *); // Get XletTable (Hash Table) that contains the... static XletTable* getTable(); public: virtual ~Broker(); static Broker* getInstance(JNIEnv *); jobject callMethod(JNIEnv *, jclass, jstring, jobject, jbyteArray); }; #endif /* BROKER_H_ */ </code></pre> <p>BrokerJNI.h</p> <pre><code>/* DO NOT EDIT THIS FILE - it is machine generated */ #include &lt;jni.h&gt; /* Header for class Broker */ #ifndef _Included_Broker #define _Included_Broker #ifdef __cplusplus extern "C" { #endif /* * Class: Broker * Method: callMethod * Signature: (Ljava/lang/String;Ljava/lang/reflect/Method;[B)Ljava/lang/Object; */ JNIEXPORT jobject JNICALL Java_Broker_callMethod (JNIEnv *, jclass, jstring, jobject, jbyteArray); #ifdef __cplusplus } #endif #endif </code></pre> http://stackoverflow.com/questions/1427226/invoking-apache-fop-from-c 1 Invoking Apache-FOP from C++ eLAN 2009-09-15T13:37:09Z 2009-11-08T10:40:35Z <p>Hi, Has anyone experience or had problems implementing a JNI wrapper for apache FOP?</p> <p>Bonus points: Any other options for processing xsl-fo from C++?</p> http://stackoverflow.com/questions/1610045/how-to-return-array-from-jni-to-java 2 How to return array from JNI to java? EnderX 2009-10-22T21:23:12Z 2009-11-06T22:18:40Z <p>Hello, I am a beginner programmer and I am attempting to use the android NDK.</p> <p>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.</p> <p>-Thanks</p> http://stackoverflow.com/questions/1670859/wrapping-an-existing-application-with-jni 1 Wrapping an existing application with JNI Michael Minerva 2009-11-03T23:37:32Z 2009-11-06T18:20:34Z <p>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 to interface with Objective-C in an existing application. </p> http://stackoverflow.com/questions/854808/using-maven-to-build-deploy-use-projects-with-jni 1 Using maven to build/deploy/use projects with JNI. rcreswick 2009-05-12T20:49:35Z 2009-11-06T17:55:03Z <p>I am trying to use maven to build a project that depends on a JNI wrapper around the OpenCV computer vision library. I've been able to "maven-ize" the OpenCV wrapper here: <a href="http://ubaa.net/shared/processing/opencv/" rel="nofollow">http://ubaa.net/shared/processing/opencv/</a> by using FreeHEP's NAR maven plugin, but the documentation for that plugin is somewhat lacking. </p> <p>I've been able to create a project (imagedetect) that depends on the OpenCV jni project (I'm calling that OpenCVJava). imagedetect will compile, however, any test, integration-test, or package target fails with an error about libraries missing from the java.library.path. </p> <pre><code>!!! required library not found : no OpenCV in java.library.path Verify that the java.library.path property is correctly set and 'libcxcore.so', 'libcv.so', 'libcvaux.so', 'libml.so', and 'libhighgui.so' are placed (or linked) in one of your system shared libraries folder </code></pre> <p>This is particularly frustrating -- the only way I know to resolve this is to somehow track down the .nar file for the opencv libraries, manually extract them, set the java.library.path, and then invoke the gnaraly java command to actually execute the tests/application with the proper classpath / library path. This isn't going to work--particularly if this problem persists to transitive dependencies. </p> <p>How can I make this build/test/execute system cleaner? I'm not set on FreeHEP, but I would like to stick with maven, since it makes our most common use-cases much simpler.</p> <p>FreeHEP Nar plugin: <a href="http://java.freehep.org/freehep-nar-plugin/intro.html" rel="nofollow">http://java.freehep.org/freehep-nar-plugin/intro.html</a></p> http://stackoverflow.com/questions/184864/accessing-rpg-on-iseries-from-java 0 Accessing RPG on iSeries from Java lawsonj2019 2008-10-08T20:57:31Z 2009-11-05T05:51:06Z <p>Has anyone had good experiences of talking direct to RPG programs running on a V5R4 iSeries machine from Java? If so, what are the recommendations of the community, and what pitfalls should I try to avoid?</p> <p>From the various pieces of literature and spike solutions I have attempted it looks as though we can use ProgramCallBeans (either through PCML or xPCML), talking to the DataQueues (for asynchronous comms), or even JNI.</p> <p>I'm looking for something that's robust, performant, quick to develop, easy to maintain, and easy to test (aren't we all!?!).</p> http://stackoverflow.com/questions/1667142/is-it-possible-to-generate-a-dll-using-turbo-c-c-compiler 1 Is it possible to generate a DLL using Turbo C/C++ compiler ?? akjain 2009-11-03T12:48:18Z 2009-11-04T14:53:16Z <p>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". (<a href="http://www.java-tips.org/other-api-tips/jni/simple-example-of-using-the-java-native-interface-7.html" rel="nofollow">explained here</a>)</p> <p>But I am interested to know if something similar can be done using <a href="http://edn.embarcadero.com/article/21751" rel="nofollow">TC</a> or <a href="http://edn.embarcadero.com/article/21751" rel="nofollow">TCC</a>.</p> <p>I don't have a copy of "Microsoft Visual C++" and not sure if <a href="http://msdn.microsoft.com/en-us/library/9s7c9wdw.aspx" rel="nofollow">cl.exe</a> is available without having to install "Microsoft Visual studio"</p> http://stackoverflow.com/questions/1666815/is-there-a-cross-platform-way-of-handling-named-pipes-in-java-or-should-i-write-m 0 Is there a cross platform way of handling named pipes in Java or should I write my own? Benj 2009-11-03T11:45:26Z 2009-11-03T12:15:19Z <p>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 do this (for various reasons) after weighing up shared mem/sockets/rpc etc. My question is, is there a nice way of handling named pipes in Java or should I write one?</p> http://stackoverflow.com/questions/68042/how-do-i-convert-jstring-to-wchart 0 How do I convert jstring to wchar_t Obediah Stane 2008-09-15T23:51:29Z 2009-11-03T10:37:43Z <p>Let's say that on the C++ side my function takes a variable of type jstring named myString. I can convert it to an ANSI string as follows:</p> <p>const char* ansiString = env->GetStringUTFChars(myString, 0);</p> <p>is there a way of getting</p> <p>const wchar_t* unicodeString = ...</p> http://stackoverflow.com/questions/50398/calling-c-code-from-java 6 Calling C# code from Java? Keith G 2008-09-08T18:46:09Z 2009-10-31T18:25:22Z <p>Does anyone have a good solution for integrating some C# code into a java application? </p> <p>The code is small, so I could re-write in java, but I would rather reuse the code if possible. Don't repeat yourself, etc. </p> <p>Also, I know I can expose the C# as a web service or whatever, but it has some security/encryption stuff in there, so I would rather keep it tightly integrated if possible.</p> <p><hr /></p> <p>Edit: It's going to be on a server-based app, so "downloading" another runtime is irrelevant.</p> http://stackoverflow.com/questions/1556885/defaults-for-eclipse-run-configurations 1 Defaults for Eclipse run configurations gibbss 2009-10-12T20:55:08Z 2009-10-29T23:34:55Z <p>I'm writing a Java library with a lot of jni code. Pretty much every test case needs to load my jni dll, and I have a lot of test cases. In order to run the test cases out of Eclipse's Junit launcher, I have to create a run/debug configuration and edit the VM arguments and environment variables.</p> <p>I would like a way to set the VM arguments and environment variables to a default for the entire project and have new run configurations include the default entries. From what I can tell, Execution Environments maybe do something like this but I seem to need the PDE to get them to work(?)</p> <p>Specifically, I want to enable assertions on my project by default and include the path to my native dll in the PATH environment variable. I can't use the "Default VM Arguments" setting in the JRE definition panel because my dll depends on a number of others and java.library.path isn't used for dependency resolution, PATH is. Is there a way to make Eclipse do what I want?</p> http://stackoverflow.com/questions/1632367/passing-pointers-between-c-and-java-through-jni 2 Passing pointers between C and Java through JNI Volker 2009-10-27T17:22:52Z 2009-10-28T16:21:15Z <p>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 about it are correct.</p> <p>When i call a native function from Java, i pass some data to it, the functions calculates something and returns a result. Is it possible, to let the first function return a reference (pointer) to this result which i can pass to JNI and call another function that does further calculations with the result?</p> <p>My idea was to reduce the overhead that comes from copying data to and from the GPU by leaving the data in the GPU memory and just passing a reference to it so other functions can use it.</p> <p>After trying some time, i thought for myself, this shouldn't be possible, because pointers get deleted after the application ends (in this case, when the C-function terminates). Is this correct? Or am i just to bad in C to see the solution? </p> <p>Edit: Well, to expand the question a little bit (or make it more clearly): Is memory allocated by JNI native functions deallocated when the function ends? Or may i still access it until either the JNI application ends or when i free it manually?</p> <p>Thanks for your input :)</p> http://stackoverflow.com/questions/1632842/how-to-implement-a-google-chrome-like-title-bar-for-java-swt-application 1 How to implement a Google-chrome-like title bar for Java SWT application MartyC 2009-10-27T18:42:01Z 2009-10-27T19:19:18Z <p><img src="http://z1mag3.s3.amazonaws.com/chrome.gif" alt="alt text" /></p> <p>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 SWT windows title bar. The application's tabs appear at the same level as the window control buttons.</p> <p>My understanding is that I will need to: </p> <ul> <li>write a Windows widget capable of rendering the custom look and managing tabs as opposed to menus.</li> <li>expose the Windows widget as a dll for use in Java via JNI</li> <li>write a custom SWT widget to wrap it and expose the tab management interface.</li> </ul> <p>I have a lot of experience with Java programming, GUI programming with Swing/AWT, and non-GUI C# programming. Windows GUI programming and SWT are new to me so I'm not sure where to start. The best I have found so far is a 2001 article on <a href="http://eclipse.org/articles/Article-Writing%20Your%20Own%20Widget/Writing%20Your%20Own%20Widget.htm" rel="nofollow">writing your own SWT widget</a>. </p> <p>My biggest unknown is the best way to implement a custom Windows application-window.</p> http://stackoverflow.com/questions/1588880/loading-a-universal-binary-with-java 1 Loading a universal binary with Java Robbie 2009-10-19T14:11:09Z 2009-10-27T14:23:05Z <p>Hi Everyone,<br /> I have an Java applet that loads native code through JNI. Everything worked just fine until I made the upgrade to Snow Leopard, and then Safari decided to be dumb. It turns out Safari will only load 64 bit binaries when in 64 bit mode. (You can put it in 32 bit mode, but that is not an option.) I changed my build system (g++) to support building a universal binary instead of a single 32 bit binary. I have successfully created a universal binary, but when I try and load it into my applet, I get an unsatisfied link exception saying that there is not a suitable image found and it cannot map it. Has anyone dealt with this before?</p> <p>For extra info... When I typed in 'file native.dylib' in Terminal, the original 32 binary came out as:<br /> Mach-O dynamically linked shared library i386</p> <p>And when I did the same for the universal binary, it came out as:<br /> native.dylib: Mach-O universal binary with 2 architectures<br /> native.dylib (for architecture i386): Mach-O object i386<br /> native.dylib (for architecture <code>x86_64</code>): Mach-O 64-bit object <code>x86_64</code></p> http://stackoverflow.com/questions/769977/how-to-start-java-from-within-a-c-process 1 How to start Java from within a C process? Arthur Ulfeldt 2009-04-20T20:37:10Z 2009-10-26T19:09:55Z <p>I want to add some Java (actually <a href="http://en.wikipedia.org/wiki/Clojure" rel="nofollow">Clojure</a>) based event handlers to a HUGE legacy C application. What is the most straight forward and easily maintained way to do this? I would like the Java classes to be running in the same process as the C code. Is this even possible? </p>