SlideShare a Scribd company logo
.

JNA
.

Java Native Access
Robert Bachmann
JSUG/JUGAT Meeting #59

1
Motivation

• JNI (Java Native Interface) allows Java
programs to call native code
• JNA is an open-source library that simpli es
using JNI (Java Native Interface)

2
Reasons for “going native”

•
•
•
•

Integration
Using operating system features (e.g: SWT)
Using architecture features (e.g: SSE, RdRand)
Performance (e.g: tomcat-native)

3
Hello World with Windows API

int WINAPI MessageBoxA(
HWND hWnd, LPCTSTR lpText, LPCTSTR lpCaption,
UINT uType
);

4
JNI Example (1/3)

public class HelloJni {
public native int msgBox(String s);
public static void main(String[] args) {
System.loadLibrary(”HelloJni”);
new HelloJni().msgBox(”Hello␣World!”);
}
}

5
JNI Example (2/3)

// generated by javah from HelloJni.class
#include <jni.h>
/* ... /*
* Class:
HelloJni
* Method:
msgBox
* Signature: (Ljava/lang/String;)I
*/
JNIEXPORT jint
JNICALL Java_HelloJni_msgBox
(JNIEnv *, jobject, jstring);

6
JNI Example (3/3)
#include <windows.h>
#include ”HelloJni.h”
JNIEXPORT jint JNICALL
Java_HelloJni_msgBox(
JNIEnv *env, jobject o, jstring s) {
const char *ns = (*env)->GetStringUTFChars(env,
s, NULL);
int i = MessageBoxA(
NULL, ns, ”Demo”,
MB_ICONINFORMATION);
(*env)->ReleaseStringUTFChars(env, s, ns);
return i;
}

7
JNA Example
import com.sun.jna.*;
public class HelloJna {
public interface UserLib extends Library {
int MB_ICONINFORMATION = 0x40;
int MessageBoxA(Pointer p, String s,
String t, int type);
}
public static void main(String[] args) {
UserLib lib = (UserLib)
Native.loadLibrary(”user32”, UserLib.class);
lib.MessageBoxA(null, ”Hello␣World!”, ”Demo”,
lib.MB_ICONINFORMATION);
}
}

8
Java type mappings

•
•
•
•
•
•

int → int32_t
short → int16_t
long → int64_t
String → char*
byte → char
char → int16_t

9
JNA mapping classes

• WString → wchar_t*
• Pointer → void*
• PlatformLong → long

10
More features

•
•
•
•

Array mapping
Structures
Callbacks
Wrapper generator (JNAerator, third party)

11
Implementation

• Dispatch code implemented using JNI and
libffi
• jna.jar contains platform binaries

12
Alternatives

• BridJ
• SWIG

13
Links

•
•
•

https://github.com/twall/jna
http://en.wikipedia.org/wiki/JNAerator
http://www.swig.org/

14
Questions?

15
Thanks
Twitter

@robertbachmann

Email rb@

—

.at

16

More Related Content

PPTX
Multithreading in java
PPTX
Chat Passion Series
ODP
Introduction to Shell script
PPTX
Input output files in java
PPTX
Basic of java
PDF
Clojure and Modularity
PPTX
Java nio ( new io )
PPTX
Thread presentation
Multithreading in java
Chat Passion Series
Introduction to Shell script
Input output files in java
Basic of java
Clojure and Modularity
Java nio ( new io )
Thread presentation

What's hot (11)

PPT
OOP Language Powerpoint
KEY
Symfony2 - A Short Introduction
PPTX
Bash shell scripting
PPT
Os Vanrossum
PPTX
system management -shell programming by gaurav raikar
PPTX
SHELL PROGRAMMING
PDF
Python for Penetration testers
PPT
Shell programming
PPTX
Constructor and Destructor
ODP
Os Cook
OOP Language Powerpoint
Symfony2 - A Short Introduction
Bash shell scripting
Os Vanrossum
system management -shell programming by gaurav raikar
SHELL PROGRAMMING
Python for Penetration testers
Shell programming
Constructor and Destructor
Os Cook
Ad

Viewers also liked (20)

PDF
Google's Guava
PDF
PDF
C# / Java Language Comparison
PDF
Prima-Tech Books
PPTX
The Brandery "Social Shopping: el caso de Privalia"
PDF
PANAMA STEEL GROUP
PDF
Cronica comarca-olivenza n-3
PPTX
Hyperpigmentation Peel Puerto RIco Workshop 2013 spanish version
PDF
TJECK 234
PDF
100443 es es
PPTX
Tendencias en la gestión de centros educativos
PPTX
Técnicas de compostaje
PPTX
Traqueotomia
PPT
Historiografia biblica1
PDF
Concepciones de creatividad en directivos, docentes y estudiantes de la Carre...
PPT
Introduccion a las potencias
DOCX
How to create mail server in cisco packet tracer
PDF
PPTX
Organizing edmngt
Google's Guava
C# / Java Language Comparison
Prima-Tech Books
The Brandery "Social Shopping: el caso de Privalia"
PANAMA STEEL GROUP
Cronica comarca-olivenza n-3
Hyperpigmentation Peel Puerto RIco Workshop 2013 spanish version
TJECK 234
100443 es es
Tendencias en la gestión de centros educativos
Técnicas de compostaje
Traqueotomia
Historiografia biblica1
Concepciones de creatividad en directivos, docentes y estudiantes de la Carre...
Introduccion a las potencias
How to create mail server in cisco packet tracer
Organizing edmngt
Ad

Similar to JNA (20)

PDF
109842496 jni
PDF
NDK Primer (AnDevCon Boston 2014)
PDF
Jni – java native interface
PDF
NDK Primer (Wearable DevCon 2014)
PPTX
Let's talk about jni
PPT
C++ programming with jni
PDF
Using the Android Native Development Kit (NDK)
PPT
Android JNI
PDF
NDK Programming in Android
PDF
JNA - Let's C what it's worth
PDF
NASAfinalPaper
PPTX
PDF
Native code in Android applications
PPTX
PDF
Getting started with the JNI
PPTX
Android ndk - Introduction
PPTX
Advance Android Application Development
PDF
Inside JVM
PDF
Exploring the World of Java Native Interface 1.pdf
109842496 jni
NDK Primer (AnDevCon Boston 2014)
Jni – java native interface
NDK Primer (Wearable DevCon 2014)
Let's talk about jni
C++ programming with jni
Using the Android Native Development Kit (NDK)
Android JNI
NDK Programming in Android
JNA - Let's C what it's worth
NASAfinalPaper
Native code in Android applications
Getting started with the JNI
Android ndk - Introduction
Advance Android Application Development
Inside JVM
Exploring the World of Java Native Interface 1.pdf

Recently uploaded (20)

PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Encapsulation theory and applications.pdf
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPT
Teaching material agriculture food technology
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
NewMind AI Monthly Chronicles - July 2025
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
KodekX | Application Modernization Development
PDF
Machine learning based COVID-19 study performance prediction
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Digital-Transformation-Roadmap-for-Companies.pptx
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Understanding_Digital_Forensics_Presentation.pptx
Encapsulation theory and applications.pdf
Per capita expenditure prediction using model stacking based on satellite ima...
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Teaching material agriculture food technology
Advanced methodologies resolving dimensionality complications for autism neur...
Unlocking AI with Model Context Protocol (MCP)
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
The AUB Centre for AI in Media Proposal.docx
NewMind AI Monthly Chronicles - July 2025
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
KodekX | Application Modernization Development
Machine learning based COVID-19 study performance prediction
Spectral efficient network and resource selection model in 5G networks
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx

JNA