将com组装成dll,供java调用

1,使用ATL生成动态库

参考链接:https://blog.csdn.net/wangwenjing90/article/details/8771934

2,自己手动生成dll动态库,具体的生成方式就不进行赘述,这里只显示代码

2.1 hello.h 文件

#ifndef _HELLO_H_
#define _HELLO_H_

extern "C" __declspec(dllexport) void print_hello();

extern "C" __declspec(dllexport) int myadd(int x,int y);

extern "C" __declspec(dllexport) long mynewadd(long x,long y);

#endif

2.2  hello.cpp

#include <stdio.h>
#include "hello.h"

#include "atlcomcli.h"
#import "FirstCOM.dll" no_namespace


extern "C" __declspec(dllexport) void print_hello(){
	printf("hello xiao huang ********");
	return;
}

extern "C" __declspec(dllexport) int myadd(int x,int y){
	
	return x+y;
}

extern "C" __declspec(dllexport) long mynewadd(long x,long y){

	CoInitialize(NULL);
	CLSID clsid;
	CLSIDFromProgID(OLESTR("FirstCOM.math.1"),&clsid);
	
	CComPtr<IFirstClass> pFirstClass;//智能指针
	pFirstClass.CoCreateInstance(clsid);
	long ret = pFirstClass->Add(x,y);
	printf("%d\n",ret);
	pFirstClass.Release();
	CoUninitialize();

	return ret;
}

2.3 修改配置为X64,因为本人的电脑为64位,需要注意的是 ATL生成的动态库 FirstCOM.dll 这个动态库,是和.cpp .h一样的目录下,这样可以可找到的。

build 即可生成动态库

3 ,新建java的JNA进行C的开发 程序,使用的是maven 进行依赖包的管理

public class JNATest4 {

    public interface Clibrary extends Library {
        //加载libhello.so链接库
        JNATest4.Clibrary INSTANTCE = (JNATest4.Clibrary) Native.loadLibrary("hello", Clibrary.class);

        //此方法为链接库中的方法
        void print_hello();

        int myadd(int x, int y);

        long mynewadd(long x, long y);
    }

    public static void main(String[] args) {
        //调用
        Clibrary.INSTANTCE.print_hello();
        int res = Clibrary.INSTANTCE.myadd(1, 2);

        long newres = Clibrary.INSTANTCE.mynewadd(5, 6);

        System.out.println(res);
        System.out.println(newres);


    }
}

4 编译即可运行。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值