0
votes
1answer
18 views
Mutex in JNI using Foundation NSLock
I have some objective-c code that uses an NSLock to implement a sort of transaction. The object is locked on a "begin transaction", several other calls are made with the lock in place, and then it's …
0
votes
2answers
24 views
Glassfish native library loading (.dll, .so)
I am using the recently released Glassfish v3 and while using native libraries glassfish would intermittently complain glassfish SEVERE: java.lang.UnsatisfiedLinkError:
Native Library already loaded …
2
votes
1answer
26 views
JNI problem on OSX
I'm running into problems using AWT classes on OSX (10.5.8) with Java 6 (1.6.0_17 JVM: 14.3-b01-101).
Trying to load java.awt.Dimension the code just freezes, this happens in Eclipse or from the …
0
votes
0answers
13 views
JODConverter 3.0, OpenOffice, and JNI
I'm using JODConverter 3.0 to handle communicating with OpenOffice to convert documents. Everything is working fine except that JODConverter uses a Java library from OpenOffice that uses JNI to grab …
0
votes
1answer
41 views
JNI: NoSuchFieldError
Output of: javap -s SomeClass
public org.someapp.SomeClass$_data data;
Signature: Lorg/someapp/SomeClass$_data;
Definition of SomeClass in Java:
class SomeClass
{
private class _data {
…
0
votes
1answer
15 views
Cocoa class launched from JNI
I currently have code that makes a call from java into my cocoa app using JNI, in the JNI function on the cocoa side I create a new thread and assign my NSApp delegate like the main function would do. …
0
votes
1answer
95 views
JNI / C library: passing byte ptr
I have an unsigned char* in my C library, and Im calling a JNI exported function that needs to set a java object with this data... preferably in a byte[].
But this function will be called very often, …
1
vote
3answers
72 views
Bundling native dll with jar
Hi,
I need to include native lib (jnotify but I think that it does't matter) to my jar. I wont to do it with NetBeans.
I added Bundle-NativeCode: /lib/jnotify.dll; osname=win32 to my manifest.mf file …
3
votes
3answers
253 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 …
3
votes
2answers
80 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
13 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 …
1
vote
1answer
60 views
Android NDK: Autogenerate function declarations?
I am trying to use a pre-existing native C library in my android project.. The library builds just fine with the NDK tools...
Now what I've come to understand is that I cannot just call into the …
1
vote
3answers
61 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
56 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
55 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 …
