Java Native Access (JNA) provides pure Java access to native shared libraries without the need for additional native or JNI code.
0
votes
1answer
14 views
Using JNA to access DLL: Output not in expected order
Background first, PROBLEM in bold:
I am a student and for a summer research project, I am going to write a Java program that lets me export data collected from research hardware into MATLAB in the ...
0
votes
0answers
18 views
Retrieving item text with JNA and SendMessage()
I am attempting to retrieve the item text from a Win32 ListView-like control. I am using JNA and SendMessageW() to send LVM_GETITEMTEXTW to the control. I have been successful at retrieving the item ...
0
votes
1answer
20 views
jna retrieving image from memory buffer
I'm using a native c++ dll(for check scanner) out of an Java application with the JNA. I have some trouble understanding how I can get scanned image from the memory there is the c++ declaration
...
0
votes
1answer
34 views
Error while passing array of structures conataining char array to native function using JNA
Here is my updated code after implementing suggestions. But still problems persist.
typedef struct S1{
char temp1[100];
char temp2[100];
}S1
...
int manipulateTemp(S1 s1Arr[] );
JNA ...
1
vote
1answer
33 views
Get running processes using JNA
I am trying to obtain a list of all currently running processes on a windows machine.
I am trying it with winapi calls via JNA to
EnumProcesses -> OpenProcess -> GetModuleBaseNameW -> CloseHandle
...
0
votes
0answers
15 views
Numpad Enter as Global Hotkey
I want to use Numpad Enter key as Global Hotkey, I have tried JNA(Java Native Hook) and jIntelljType but not able to achive this.
Has anyone tried this or have any clue about it.
thanks & regards
...
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
0answers
31 views
Get Printer Status using winspool API in java
How to get Printer Status using winspool API in java.
I am using JNA
I am gone through this post how-can-i-get-a-printers-make-and-model-in-java
But i want to know the Printer Status.
-1
votes
0answers
50 views
How to use manufacturer's .dll and .h files in Java?
I've been supplied with a .dll and .h header files and I was wondering how I could access the library with Java?
The library is .dll is a pure C library that implements functionality necessary to ...
0
votes
1answer
23 views
How to pass pointer to pointer (**) in JNA?
I have function in native code void clang_tokenize(CXTranslationUnit TU, CXSourceRange Range, CXToken **Tokens, unsigned *NumTokens);
The function is going to return allocated array of tokens in ...
2
votes
1answer
107 views
loading a delphi dll in java using jna
I'm a java newbie and I'm trying to load a delphi dll, and call functions from it.
Already tried in php using winbinder but it seems to be useless: reloading dll in winbinder (php gui) crashes ...
0
votes
0answers
37 views
Using DLL in java through JNA
I am using dll in java using JNA, but i am getting below error
Exception in thread "main" java.lang.UnsatisfiedLinkError: Error looking up function 'GetStatus': The specified procedure could not be ...
0
votes
0answers
22 views
Using JNA in Applet
I have an applet that connects to pos machine with DLL. I am using JNA to communicate with DLL. But sometimes the applet crashes and I couldn't find any solition. Here are some of the errors;
- ...
4
votes
0answers
44 views
+100
Not receiving messages after sometime
I am using JNA to access User32 functions (I dont think it has got to do with Java here, more of concept problem). In my application, I have a Java process which communicates with the Canon SDK. To ...
2
votes
1answer
49 views
Options in Native.loadLibrary
I have been working on JNA for some time now. But there is one thing, I haven't understood. For example, while loading a library:
Map<String, Integer> options = new HashMap<String, ...
2
votes
4answers
81 views
clj-ssh / JSch unable to load library 'c' on Windows
I've added clj-ssh as a dependency to a Leiningen project, and I can (use 'clj-ssh.ssh) but calling (ssh-agent {}) gives the error
UnsatisfiedLinkError Unable to load library 'c': The specified ...
0
votes
0answers
51 views
JNA Data Returned to starts at 16th Byte expected
The data I am expecting in the memory is
[8 Bytes (long)][20 Bytes (byte[20])][8 Bytes (long)][20 Bytes (byte[20])][8 Bytes(long)][20 Bytes (byte[20])]
And the data structures appear to be correct. ...
0
votes
0answers
48 views
Conversion to Dalvik format failed with error in Android
I know this question has been asked a lot but I cannot seem to find the solution to the problem:
[2013-05-06 14:22:12 - MobileBim-android] Dx 1 error; aborting
[2013-05-06 14:22:12 - ...
0
votes
1answer
32 views
better Java IPC@Linux tactic: (a) java.nio File API on /dev/shm or (b) JNI to shmctl(2)?
We want write a Java 7 program that will boot (via 2 cmd line invokes) as two separate JVM process instances. We want these 2 processes to communicate with each other using native Linux kernel ...
0
votes
1answer
61 views
JNA: get all windows processes command line
Looking for a way by using JNA to get a list of all currently running windows programs and their command lines. There are a few tutorials on this site (Get list of processes on Windows in a ...
0
votes
1answer
41 views
JNA passed values not updating
I'm very new to JNA. Im having an issue where im passing a Structure to a library call that updates some variables. When I do it directly in the C code from a main method it works, but when I try to ...
0
votes
0answers
24 views
Getting pointer to COM object in java
I am looking at how to get a pointer to a COM object in Java so that I can pass the pointer on to another native DLL.
At the moment I have been using the JACOB Java COM bridge, however I do not ...
0
votes
0answers
39 views
Why does JNA fail to load my DLL on Windows XP?
I'm trying to use JNA to call a function in a DLL, but it refuses to in Windows XP (for my friend, and probably teacher as well), which is really annoying since I only have Windows 7 (64-bit).
First ...
0
votes
1answer
42 views
JNA call works with 32-bit JRE but not with 64-bit JRE
I am trying to call system32's CreateProcessW from my JNA interface that I have created. The problem is that it works fine when I am running the software from a 32-bit JRE but when I move over to a ...
0
votes
0answers
44 views
Java client on Win7 (64bit) for LibVirt API
I am building a Java client on Windows 7 64 bit plaftorm to manage a KVM using the libvirt APIs and I need some help.
I did the following:
Using the instructions at http://libvirt.org/java.html, I ...
0
votes
1answer
25 views
Function scanf with JNA
I'm trying to use the Function scanf with JNA.
package importDLLs;
import com.sun.jna.Library;
import com.sun.jna.Native;
public class JNATest {
public interface CLibrary extends Library {
...
0
votes
1answer
45 views
JNA failure in Cassandra
I'm using Cassandra 1.2.3 on Windows, I have downloaded and copied Jna.jar and Platform.jar to C:\Program Files (x86)\apache-cassandra-1.2.3\lib , but when I run Cassandra I get this message
INFO ...
0
votes
3answers
110 views
JNA java.lang.UnsatisfiedLinkError and The specified module could not be found
I'm putting together a jar that will let me call commands only available to natives (the jar uses natives rather then the actual program). Now I ran into a problem, whenever I load the DLL. Here is ...
-1
votes
1answer
51 views
Does windows.h link to any specific DLL? [closed]
I'm using windows.h in a DLL I'm using for JNA, Is there a DLL that windows.h links to? Because if there is I need to include it apparently.
0
votes
0answers
25 views
Duplicate Result and Output
I have a little problem but I cannot find what is the wrong line.
I want to make a hotkey program. This program will can move your mouse and click ones where You want.
I tride to use w32keyhook scr ...
0
votes
1answer
52 views
Using opengl32.DLL in 64 bit JRE?
I was wondering this because from what I know, I've never seen a 64 bit opengl DLL stock on at least Windows no matter if it's 32 bit or 64 bit. So I'm stuck using what I got, which is the 32 bit ...
0
votes
0answers
37 views
GLEnum in Java?
I'm importing opengl32.DLL into Java using JNA and I ran into a problem because of GLEnum. Since I don't know the source of OpenGL I don't know what GLEnum is. Is it an enum, int, or what? How do I ...
0
votes
0answers
28 views
Java: Transparent window overlaying foreign application window
Using JNA, more specifically User32.EnumWindows I identify foreign application windows that should be overlayed by custom transparent windows created by my application. They should remain on top of ...
0
votes
2answers
82 views
Load DLL in Netbeans
I am trying to load the DLL files in Netbeans 7.0.1,
Code is
dll = (RRHFEK02DLL)Native.loadLibrary("RRHFEK02DLL.dll", RRHFEK02DLL.class);
utility = ...
0
votes
2answers
33 views
create a global reference in JNA
The native library I want to use have method like this:
extern unsigned long write(void);
what it is going to write, however, need to be defined in several global variable:
short int Addr; //the ...
0
votes
1answer
66 views
Configuring libmediainfo to work with Java project without installation across all platforms (OSes)
I am using mediainfo (http://mediainfo.sourceforge.net/en) to extract information from audio and video files using Java code.
My java project runs over all platforms (osx, win & linux). So far I ...
0
votes
1answer
152 views
Calling a C++ dll method from Java using JNA and avoiding Method Name Mangling
I have been going through links on StackOverflow on how to resolve the Method name mangling but did not find any solution with a real time example.
Scenario-A C++ Ex.dll file is provided by client. I ...
1
vote
1answer
57 views
JNA - Getting Base address
Recently I have been working on a little project of mine, which is Memory reading/writing in java for native games (C/C++/etc).
At the moment I have a base where I can read and write to memory of ...
2
votes
2answers
130 views
Strange phenomenon: Java/Swing-operations cause access violation in native library (JNA)
Greetings fellow developers!
Since SO was almost always helpful with my programming problems, I decided to sign up and give it a shot with my most recent problem. It really is a strange phenomenon ...
0
votes
1answer
172 views
Android - JNA library
Hello i'm using JNA to be able to use an external .dll(i don't have the header file but i have documentation thus the exposed function signatures).
I have managed to use my dll in a java project ...
3
votes
2answers
235 views
DLL (Delphi) with ADO (connection and query) not work in Java (using jna)
I have a dll (Delphi) that contains a ADOConnection and ADOQuery, but when running the called DLL in java (using JNA) appear some error information to the console (below):
A fatal error has been ...
0
votes
1answer
38 views
Thread getting blocked in ReceiveNextEvent
Using JNA, I have built an api to receive OS events from Mac using Carbon framework.
Now, there is a function in Carbon.framework defined as:
OSStatus ReceiveNextEvent (
ItemCount inNumTypes, ...
-1
votes
1answer
117 views
Call C++ from Java with multiple arguments and three functions [duplicate]
I have a previously written C++ code which I want to put a Java user interface on it. This C++ code executes three different algorithms that require some user defined data types as input and pass ...
0
votes
0answers
66 views
tessbaseAPI methods in the tess4j for getting coordinates of the word and the Utf8 text
Can anybody tell me as to how i can implement the JNI wrapper for the methoods in the TessAPI classes. I need to get the coordinates of the words in the image being OCRed and hence i need to use the ...
1
vote
0answers
47 views
How to select legitimate windows from an winapi callback?
I am trying to create a program in Java that is able to get positional information from unrelated windows in Windows. I need the rectangle from all the visible windows, I need to know which ones are ...
0
votes
1answer
87 views
How to Define Paths to Frameworks on a Mac in Java?
I am helping to code a stop-motion program that is to be cross platform, and on windows it works great. For those who do not know, stop motion is just a fancy term for animation. This program allows ...
0
votes
1answer
75 views
GetModuleFileName for window in focus JNA Windows OS
I have created this method that should return the full path and file name so that I can uniquely identify a program. However, it only returns C:\Program Files (x86)\Java\jre6\bin\javaw.exe or an empty ...
0
votes
1answer
50 views
How can I get the active application title using Java in OSX?
I'm writing an application to collect information about a users behavior in front of the computer in order to study usage patterns. I've looked into JNA but can't find any information about how to ...
0
votes
0answers
70 views
JNA passing array of byte by reference
Hello I'm using JNA using a dll which identify plates by passing an image to it.
The dll has a function that i need to pass a array of byte (image) by reference:
public int ...
0
votes
0answers
50 views
How to get text from notepad using JNA sendMessage
How can I get text from notepad using JNA?
I tried the following code:
public final int WM_GETTEXT = 0x00D;
public final int WM_GETTEXTLENGTH = 0x00A;
...
byte[] windowText = new ...


