JNI调用

JNI调用

环境

操作系统: Win 10

准备

  1. 安装visual studio 2019

开始

  1. 新建Java项目,新建包cn.foolishbird.JNIDemo, 新建类HelloWorld
package cn.foolishbird.JNIDemo;


import java.nio.file.FileSystems;

public class HelloWorld {
    public native void displayHelloWorld();

    static {
        try {
            System.load(
                    FileSystems.getDefault()
                            .getPath("build/hello.dll")
                            .normalize()
                            .toAbsolutePath()
                            .toString());
        } catch (UnsatisfiedLinkError e) {
            e.printStackTrace();
        }
    }
    public static void main(String[] args) throws Exception {
        new HelloWorld().displayHelloWorld();
    }
}

  1. cd到项目src目录,执行命令: javah -jni cn.foolishbird.JNIDemo.Sample
    在这里插入图片描述

  2. 查看src目录下是否有对应.h文件
    在这里插入图片描述

  3. 用visual studio 新建dll项目
    在这里插入图片描述

  4. 将生成的.h文件复制到头文件目录下
    在这里插入图片描述

  5. 源文件添加实现
    在这里插入图片描述

  6. 实现文件

    /*  HelloWorldImp.c  */
    #include "pch.h"
    #include <jni.h>
    #include "cn_foolishbird_JNIDemo_HelloWorld.h"
    #include <stdio.h>
    
    JNIEXPORT void JNICALL Java_cn_foolishbird_JNIDemo_HelloWorld_displayHelloWorld
      (JNIEnv *, jobject)
    {
        printf("Hello world!\n");
        return;
    }
    
  7. 打包成.dll, 这里注意,因为我jdk是64位打包dll也必须是64位
    在这里插入图片描述

  8. 注意jni.h 需要添加到环境里面,visual studio 右键项目->属性
    在这里插入图片描述

    在这里插入图片描述

  9. 选择生成->生成解决方案 将build复制到项目下
    在这里插入图片描述

  10. 在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值