SlideShare ist ein Scribd-Unternehmen logo
1 von 16
Downloaden Sie, um offline zu lesen
.

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

Weitere ähnliche Inhalte

Was ist angesagt?

Os Vanrossum
Os VanrossumOs Vanrossum
Os Vanrossum
oscon2007
 

Was ist angesagt? (11)

OOP Language Powerpoint
OOP Language PowerpointOOP Language Powerpoint
OOP Language Powerpoint
 
Symfony2 - A Short Introduction
Symfony2 - A Short IntroductionSymfony2 - A Short Introduction
Symfony2 - A Short Introduction
 
Bash shell scripting
Bash shell scriptingBash shell scripting
Bash shell scripting
 
Os Vanrossum
Os VanrossumOs Vanrossum
Os Vanrossum
 
Java threads
Java threadsJava threads
Java threads
 
system management -shell programming by gaurav raikar
system management -shell programming by gaurav raikarsystem management -shell programming by gaurav raikar
system management -shell programming by gaurav raikar
 
SHELL PROGRAMMING
SHELL PROGRAMMINGSHELL PROGRAMMING
SHELL PROGRAMMING
 
Python for Penetration testers
Python for Penetration testersPython for Penetration testers
Python for Penetration testers
 
Shell programming
Shell programmingShell programming
Shell programming
 
Constructor and Destructor
Constructor and DestructorConstructor and Destructor
Constructor and Destructor
 
Os Cook
Os CookOs Cook
Os Cook
 

Andere mochten auch

The Brandery "Social Shopping: el caso de Privalia"
The Brandery "Social Shopping: el caso de Privalia"The Brandery "Social Shopping: el caso de Privalia"
The Brandery "Social Shopping: el caso de Privalia"
Alfons Claver
 
Cronica comarca-olivenza n-3
Cronica comarca-olivenza n-3Cronica comarca-olivenza n-3
Cronica comarca-olivenza n-3
argailcomorr
 
Concepciones de creatividad en directivos, docentes y estudiantes de la Carre...
Concepciones de creatividad en directivos, docentes y estudiantes de la Carre...Concepciones de creatividad en directivos, docentes y estudiantes de la Carre...
Concepciones de creatividad en directivos, docentes y estudiantes de la Carre...
Felix Antonio Gómez Hernández
 

Andere mochten auch (20)

Google's Guava
Google's GuavaGoogle's Guava
Google's Guava
 
Java 8
Java 8Java 8
Java 8
 
C# / Java Language Comparison
C# / Java Language ComparisonC# / Java Language Comparison
C# / Java Language Comparison
 
Prima-Tech Books
Prima-Tech BooksPrima-Tech Books
Prima-Tech Books
 
The Brandery "Social Shopping: el caso de Privalia"
The Brandery "Social Shopping: el caso de Privalia"The Brandery "Social Shopping: el caso de Privalia"
The Brandery "Social Shopping: el caso de Privalia"
 
PANAMA STEEL GROUP
PANAMA STEEL GROUPPANAMA STEEL GROUP
PANAMA STEEL GROUP
 
Cronica comarca-olivenza n-3
Cronica comarca-olivenza n-3Cronica comarca-olivenza n-3
Cronica comarca-olivenza n-3
 
Hyperpigmentation Peel Puerto RIco Workshop 2013 spanish version
Hyperpigmentation Peel Puerto RIco Workshop 2013 spanish versionHyperpigmentation Peel Puerto RIco Workshop 2013 spanish version
Hyperpigmentation Peel Puerto RIco Workshop 2013 spanish version
 
TJECK 234
TJECK 234TJECK 234
TJECK 234
 
100443 es es
100443 es es100443 es es
100443 es es
 
Tendencias en la gestión de centros educativos
Tendencias en la gestión de centros educativosTendencias en la gestión de centros educativos
Tendencias en la gestión de centros educativos
 
Técnicas de compostaje
Técnicas de compostajeTécnicas de compostaje
Técnicas de compostaje
 
Traqueotomia
TraqueotomiaTraqueotomia
Traqueotomia
 
Historiografia biblica1
Historiografia biblica1Historiografia biblica1
Historiografia biblica1
 
Adaptive Cloud Security: Game-Changing Cloud Security and Compliance Automati...
Adaptive Cloud Security: Game-Changing Cloud Security and Compliance Automati...Adaptive Cloud Security: Game-Changing Cloud Security and Compliance Automati...
Adaptive Cloud Security: Game-Changing Cloud Security and Compliance Automati...
 
Concepciones de creatividad en directivos, docentes y estudiantes de la Carre...
Concepciones de creatividad en directivos, docentes y estudiantes de la Carre...Concepciones de creatividad en directivos, docentes y estudiantes de la Carre...
Concepciones de creatividad en directivos, docentes y estudiantes de la Carre...
 
Introduccion a las potencias
Introduccion a las potenciasIntroduccion a las potencias
Introduccion a las potencias
 
How to create mail server in cisco packet tracer
How to create mail server in cisco packet tracerHow to create mail server in cisco packet tracer
How to create mail server in cisco packet tracer
 
VARIOUS SHIP TYPES
VARIOUS SHIP TYPESVARIOUS SHIP TYPES
VARIOUS SHIP TYPES
 
Jython
JythonJython
Jython
 

Ähnlich wie JNA

PPS Java Overview Unit I.ppt
PPS Java Overview Unit I.pptPPS Java Overview Unit I.ppt
PPS Java Overview Unit I.ppt
CDSukte
 
1 introduction
1 introduction1 introduction
1 introduction
Mks Khalid
 
Java language: a gentle introduction
Java language: a gentle introductionJava language: a gentle introduction
Java language: a gentle introduction
Fabio Ferraguto
 
Manuel - SPR - Intro to Java Language_2016
Manuel - SPR - Intro to Java Language_2016Manuel - SPR - Intro to Java Language_2016
Manuel - SPR - Intro to Java Language_2016
Manuel Fomitescu
 

Ähnlich wie JNA (20)

Beyond JVM - YOW! Brisbane 2013
Beyond JVM - YOW! Brisbane 2013Beyond JVM - YOW! Brisbane 2013
Beyond JVM - YOW! Brisbane 2013
 
Intoduction to java
Intoduction to javaIntoduction to java
Intoduction to java
 
Dr. Rajeshree Khande :Intoduction to java
Dr. Rajeshree Khande :Intoduction to javaDr. Rajeshree Khande :Intoduction to java
Dr. Rajeshree Khande :Intoduction to java
 
PPS Java Overview Unit I.ppt
PPS Java Overview Unit I.pptPPS Java Overview Unit I.ppt
PPS Java Overview Unit I.ppt
 
PPS Java Overview Unit I.ppt
PPS Java Overview Unit I.pptPPS Java Overview Unit I.ppt
PPS Java Overview Unit I.ppt
 
GOTO Night with Charles Nutter Slides
GOTO Night with Charles Nutter SlidesGOTO Night with Charles Nutter Slides
GOTO Night with Charles Nutter Slides
 
NDK Primer (Wearable DevCon 2014)
NDK Primer (Wearable DevCon 2014)NDK Primer (Wearable DevCon 2014)
NDK Primer (Wearable DevCon 2014)
 
Getting started with the JNI
Getting started with the JNIGetting started with the JNI
Getting started with the JNI
 
basic_java.ppt
basic_java.pptbasic_java.ppt
basic_java.ppt
 
UNIT 1.pptx
UNIT 1.pptxUNIT 1.pptx
UNIT 1.pptx
 
Java Notes by C. Sreedhar, GPREC
Java Notes by C. Sreedhar, GPRECJava Notes by C. Sreedhar, GPREC
Java Notes by C. Sreedhar, GPREC
 
Java Notes
Java Notes Java Notes
Java Notes
 
Java/Servlet/JSP/JDBC
Java/Servlet/JSP/JDBCJava/Servlet/JSP/JDBC
Java/Servlet/JSP/JDBC
 
1 introduction
1 introduction1 introduction
1 introduction
 
Java language: a gentle introduction
Java language: a gentle introductionJava language: a gentle introduction
Java language: a gentle introduction
 
Manuel - SPR - Intro to Java Language_2016
Manuel - SPR - Intro to Java Language_2016Manuel - SPR - Intro to Java Language_2016
Manuel - SPR - Intro to Java Language_2016
 
core java programming
core java programmingcore java programming
core java programming
 
What is Java Technology (An introduction with comparision of .net coding)
What is Java Technology (An introduction with comparision of .net coding)What is Java Technology (An introduction with comparision of .net coding)
What is Java Technology (An introduction with comparision of .net coding)
 
NDK Primer (AnDevCon Boston 2014)
NDK Primer (AnDevCon Boston 2014)NDK Primer (AnDevCon Boston 2014)
NDK Primer (AnDevCon Boston 2014)
 
CORE JAVA
CORE JAVACORE JAVA
CORE JAVA
 

Kürzlich hochgeladen

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Kürzlich hochgeladen (20)

Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 

JNA