解决JNA动态加载jar中dll问题

使用jna加载库文件使用如下方式: Native.loadLibrary(dllName, className);

loadLibrary源码:

public static Object loadLibrary(String name, Class interfaceClass) {

      return loadLibrary(name, interfaceClass, Collections.EMPTY_MAP);

}

即使用dll的名字加载库文件,不能带后缀。

在不修改代码代码的前提下,那么项目该如何适应dll文件路径的动态变化呢,一方面能够在eclipse中正常运行,导出jar后能在生产环境执行。

下面我写了一个方法解决这个问题:

public synchronized static Object loadDll(String libName, Class<?> className) {
        String systemType = System.getProperty("os.name");
        String libExtension = (systemType.toLowerCase().indexOf("win") != -1) ? ".dll"
                : ".so";
        String libFullName = libName + libExtension;
        String nativeTempDir = System.getProperty("java.io.tmpdir");
        InputStream in = null;
        BufferedInputStream reader = null;
        FileOutputStream writer = null;
        File extractedLibFile = new File(nativeTempDir + File.separator
                + libFullName);
        if (!extractedLibFile.exists()) {
            try {
                in = className.getResourceAsStream("/" + libFullName);
                if (in == null)
                    in = className.getResourceAsStream(libFullName);
                reader = new BufferedInputStream(in);
                writer = new FileOutputStream(extractedLibFile);
                byte[] buffer = new byte[1024];
                while (reader.read(buffer) > 0) {
                    writer.write(buffer);
                    buffer = new byte[1024];
                }
            } catch (IOException e) {
                e.printStackTrace();
            } finally {
                if (in != null)
                    try {
                        in.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                if (writer != null)
                    try {
                        writer.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
            }
        }
        String dllName;
        if (systemType.toLowerCase().indexOf("win") != -1) {
            dllName = extractedLibFile.toString().replace(".dll", "");
        } else {
            dllName = extractedLibFile.toString().replace(".so", "");
        }
        return Native.loadLibrary(dllName, className);
    }

加载libHCEHomeCMS,调用例子:

HCEHomeCMS INSTANCE = (HCEHomeCMS) PropertiesUtils.loadDll("libHCEHomeCMS",HCEHomeCMS.class);

到此,整个项目可以使用动态方式加载dll,运行jar也能正常加载,有个问题需要注意下,32位dll文件需要使用32位jdk才能加载。

欢迎指出本文有误的地方,转载请注明原文出处https://my.oschina.net/7001/blog/672173

转载于:https://my.oschina.net/7001/blog/672173

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值