我是靠谱客的博主 机智春天,最近开发中收集的这篇文章主要介绍JNA的使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

JNA据说比jni简单很多,这里有一篇介绍,用法简单、但性能比jni有所下降(基于jni):
http://blog.csdn.net/shendl/article/details/3589676/


es中用得更简单:
package org.elasticsearch.common.jna;


import com.sun.jna.Native;
import org.elasticsearch.common.logging.ESLogger;
import org.elasticsearch.common.logging.Loggers;




/**
 *
 */
public class CLibrary {


    private static ESLogger logger = Loggers.getLogger(CLibrary.class);


    public static final int MCL_CURRENT = 1;
    public static final int MCL_FUTURE = 2;


    public static final int ENOMEM = 12;


    static {
        try {
            Native.register("c");
        } catch (NoClassDefFoundError e) {
            logger.warn("JNA not found. native methods (mlockall) will be disabled.");
        } catch (UnsatisfiedLinkError e) {
            logger.warn("unable to link C library. native methods (mlockall) will be disabled.");
        }
    }


    public static native int mlockall(int flags);


    public static native int munlockall();


    private CLibrary() {
    }
}

最后

以上就是机智春天为你收集整理的JNA的使用的全部内容,希望文章能够帮你解决JNA的使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(62)

评论列表共有 0 条评论

立即
投稿
返回
顶部