Spring boot中调用C/C++(dll)

添加JNA依赖

xml 复制代码
<dependency>
	<groupId>net.java.dev.jna</groupId>
	<artifactId>jna</artifactId>
	<version>5.5.0</version>
</dependency>

准备C代码/C++代码

如下是C代码,文件名:xizi.c

c 复制代码
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

char* xiZishuo(const char* name) {
    const char* format = "%s 是我老公\n";
    size_t outputSize = strlen(format) + strlen(name) - 1;
    char* output = (char*)malloc((outputSize + 1) * sizeof(char)); // 加上额外的空间来存储字符串结束符 '\0'
    snprintf(output, outputSize + 1, format, name); // 加上 1 来包含字符串结束符的复制
    return output;
}

int main() {
    const char* name = "小跟班";
    char* result = xiZishuo(name);
    printf("%s", result);
    free(result); // 释放动态分配的内存
    return 0;
}

生成dll文件

bash 复制代码
gcc -c -Wall -Werror -fpic xizi.c -o xizi.o

gcc -shared xizi.o -o xizi.dll

备注:请注意生成的.o 或者.dll是32位还是64位 ,例如下面这个是32位的

如果dll是32位,那么java就也要是32位

如果dll是64位,那么java就也要是64位

如果 32位Gcc编译器,然后使用64位jdk,就会出现如下错误

java连接dll

java 复制代码
import com.sun.jna.Library;
import com.sun.jna.Native;
public interface MyDll extends Library {
	//dll的文件名
	String dllName = "xizi";
	
    MyDll INSTANCE = (MyDll) Native.load(dllName, MyDll.class);

    //c实现的方法名
    String xiZishuo(String name);
}

使用dll

相关推荐
励志成为嵌入式工程师4 分钟前
c语言简单编程练习9
c语言·开发语言·算法·vim
捕鲸叉34 分钟前
创建线程时传递参数给线程
开发语言·c++·算法
A charmer38 分钟前
【C++】vector 类深度解析:探索动态数组的奥秘
开发语言·c++·算法
Peter_chq41 分钟前
【操作系统】基于环形队列的生产消费模型
linux·c语言·开发语言·c++·后端
Yaml41 小时前
Spring Boot 与 Vue 共筑二手书籍交易卓越平台
java·spring boot·后端·mysql·spring·vue·二手书籍
小小小妮子~1 小时前
Spring Boot详解:从入门到精通
java·spring boot·后端
hong1616881 小时前
Spring Boot中实现多数据源连接和切换的方案
java·spring boot·后端
hikktn2 小时前
如何在 Rust 中实现内存安全:与 C/C++ 的对比分析
c语言·安全·rust
青花瓷2 小时前
C++__XCode工程中Debug版本库向Release版本库的切换
c++·xcode
观音山保我别报错2 小时前
C语言扫雷小游戏
c语言·开发语言·算法