9
votes
12answers
599 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 …
6
votes
3answers
362 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 …
6
votes
11answers
855 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 …
6
votes
6answers
1k 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 …
6
votes
11answers
2k 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 …
5
votes
2answers
548 views
Event listener in Java without app having focus? (Global keypress detection)
I've been searching for a while and everybody seems to think this is not possible using just Java, so I'll give SO a shot ;)
Is there any way to have my Java application listen for events (key events …
5
votes
3answers
847 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 …
4
votes
4answers
331 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?
4
votes
4answers
263 views
JNI Calls different in C vs C++?
Hey Folks,
So i have the following code in C that utilizes Java Native Interface however i would like to convert this to C++ but am not sure how.
#include <jni.h>
#include <stdio.h>
…
4
votes
1answer
365 views
How to debug JNI/C library?
Hi,
We have system here that uses Java JNI to call a function in a C library. Everything running on Solaris.
I have a problem somewhere with string encoding. An arabic character is returned by the …
4
votes
4answers
322 views
Which is the fastest way to access native code from Java?
Which is the fastest way of calling a native library from Java?
The ones I know about are
NativeCall - what we're currently using
JNA - haven't used it, but looks reasonable
JNI - looks horrendous …
4
votes
3answers
420 views
Running a JNI application in the Sun VM under Valgrind
The sun JVM spits out a LOT of extra noise when run under valgrind, which makes tracking memory problems in the application very challenging.
I'd like to find either a suppression file, or a VM …
4
votes
5answers
319 views
Usefulness of JNI
I've been a java developer for a couple years and have heard that you can do some pretty useful and powerful things with JNI. I don't know if I just haven't needed to use it or if it isn't terribly …
4
votes
3answers
2k 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 …
4
votes
5answers
312 views
What is the ‘correct’ way to store a native pointer inside a Java object?
What is the 'correct' way to store a native pointer inside a Java object?
I could treat the pointer as a Java int, if I happen to know that native pointers are <= 32 bits in size, or a Java long …
