Java 调c/c++ so库中接口

本文介绍了如何在Windows和Linux环境下,使用Java通过JNA库调用C/C++编译的DLL(Windows)和SO(Linux)动态库。详细步骤包括创建C/C++ DLL/SO,设置Java接口,加载库并调用函数。在Windows中,使用VS2013创建DLL,然后在Java中通过JNA加载。在Linux中,编译SO文件,并设置LD_LIBRARY_PATH,最后Java同样通过JNA调用。
摘要由CSDN通过智能技术生成

1、vs2013 新建win32 dll 空项目,main.h :

  1. extern "C" _declspec(dllexport) void hello();  
  2. extern "C" _declspec(dllexport) int add(int first, int second);  

2、main.cpp,然后生成dll文件

  1. #include "main.h"  
  2. #include <iostream>  
  3.   
  4. int add(int a, int b){  
  5.     return a + b;  
  6. }  
  7.   
  8. void hello()  
  9. {  
  10.     printf("Hello World!\n");  
  11. }  

3、eclipse 新建 java项目,把之前生成好的dll文件放在项目根目录,新建包、类,HelloWorld.java : 

  1. package com.busymonkey;  
  2.   
  3. import com.sun.jna.Library;  
  4. import com.sun.jna.Native;  
  5.   
  6. public class HelloWorld {  
  7.   
  8.     public interface TestDll1 extends Library {  
  9.         TestDll1 INSTANCE = (TestDll1) Native.loadLibrary("javaJNA", TestDll1.class);  
  10.         public int add(int a, int b);    
  11.         public void hello();  
  12.     }  
  13.   
  14.     public static void main(String[] args) {  
  15.         System.out.println(TestDll1.INSTANCE.add(1,2));  
  16.         TestDll1.INSTANCE.hello();  
  17.     }  
  18. }  

项目添加 jna 的 jar 包:

上面是windows环境下java程序调用dll,以下是linxu环境 java程序调用so动态库:

1、新建一个main.cpp:(这里需要注意的是外部声明,不然找不到动态库中的函数)

  1. #include <stdlib.h>    
  2. #include <iostream>    
  3. using namespace std;    
  4.     
  5. extern "C"    
  6. {    
  7.     void test() {    
  8.          cout << "TEST" << endl;    
  9.     }    
  10.     
  11.     int addTest(int a,int b)    
  12.     {    
  13.       int c = a + b ;    
  14.       return c ;    
  15.     }     
  16. }  

 

注:学过C/C++(cplusplus/cpp)的人都知道,extern是编程语言中的一种属性,它表征了变量、函数等类型的作用域(可见性)属性,是编程语言中的关键字。当进行编译时,该关键字告诉编译器它所声明的函数和变量等可以在本模块或者文件以及其他模块或文件中使用。通常,程序员都只是在“*h”(头文件)使用该关键字以限定变量或函数等类型的属性,然后在其他模块或本模块中使用。

 

 

2、编译so动态库文件(这里注意,linux扫描lib开头的so文件,但之后java程序中加载的时候不需要lib开头,也不需要.so后缀):

  1. g++ -fpic -shared -o libtest.so main.cpp  


为了之后的  java  程序能找到该动态库文件,加一下环境变量,并且 source 一下:

  1. #vim /etc/profile  
  2. export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$/opt/javaJNA  

3、HelloWorld.java :

  1. import com.sun.jna.Library;  
  2. import com.sun.jna.Native;  
  3.   
  4. public class HelloWorld {  
  5.   
  6.         public interface TestDll1 extends Library {  
  7.                 TestDll1 INSTANCE = (TestDll1) Native.loadLibrary("test", TestDll1.class);  
  8.                 void test();  
  9.                 int addTest(int a, int b);  
  10.         }  
  11.   
  12.         public static void main(String[] args) {  
  13.                 TestDll1.INSTANCE.test();  
  14.                 int c = TestDll1.INSTANCE.addTest(10, 20);  
  15.                 System.out.println(c);  
  16.         }  
  17. }  


同样在目录下拷贝好  jna  的  jar  包,然后编译生成:

  1. javac -classpath jna-3.5.1.jar HelloWorld.java  

4、运行程序:

  1. java -classpath .:jna-3.5.1.jar HelloWorld 

5、结果:

 

真实项目代码

1.导包

<dependency>
    <groupId>net.java.dev.jna</groupId>
    <artifactId>jna</artifactId>
    <version>4.1.0</version>
</dependency>

2.将.so文件放入/usr/lib目录下

3.编写接口调用

package com.unv.yncms.service.cds;
import com.sun.jna.*;
import com.sun.jna.ptr.IntByReference;

import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Arrays;
import java.util.List;

public class CDSService {
    public interface CDSLibC extends Library {
        CDSLibC cds = (CDSLibC) Native.loadLibrary("cds_libc", CDSLibC.class);

        int CDS_Init(int a, CDSCfg.ByReference cdsCfg);

        void CDS_Destroy();  //CDS销毁函数

        /*图片读取*/
        int CDS_ReadOnceEx(String fullFile, long offset, long len, Pointer buf);

    }

    public static class CDSCfg extends Structure {
        public static class ByReference extends CDSCfg implements Structure.ByReference {
        }

        public static class ByValue extends CDSCfg implements Structure.ByValue {
        }

        public interface fp extends Callback {
            void invoke(String filename);
        }

        /**
         * * < Metadata ip地址信息  char

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值