linux上Java调用c++使用javacpp

使用的技术

环境配置

使用

  • NativeLibrary.h 中的 C++代码
#include <string>
#include <iostream>
using namespace std;

namespace NativeLibrary {
    class NativeClass {
        public:
            const std::string& get_property() { return property; }
            void set_property(const std::string& property) { this->property = property; cout << "C++ Received :" << property << endl;}
            std::string property;
    };
}
  • NativeLibrary.java 中的Java代码
import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;

@Platform(include="NativeLibrary.h")
@Namespace("NativeLibrary")
public class NativeLibrary {
    public static class NativeClass extends Pointer {
        static { Loader.load(); }
        public NativeClass() { allocate(); }
        private native void allocate();
        // to call the getter and setter functions 
        public native @StdString String get_property(); public native void set_property(String property);
        // to access the member variable directly
        public native @StdString String property();     public native void property(String property);
    }
    public static void main(String[] args) {
        NativeClass l = new NativeClass();
        l.set_property("Hello World!");
        System.out.println("From C++:"+l.property());
    }
}
  • 将 javacpp.jar,NativeLibrary.h,NativeLibrary.java 放到同一个目录下
    linux上Java调用c++使用javacpp

  • 运行命令 java -jar javacpp.jar NativeLibrary.java -exec,出现如下信息
    linux上Java调用c++使用javacpp
    文件下出现了编译后的.class文件和.so文件
    linux上Java调用c++使用javacpp

  • 通过 Java -cp 运行,注意指出依赖的Jar包 java -cp .:javacpp.jar NativeLibrary
    linux上Java调用c++使用javacpp

  • 警告不影响 Hello World,出现问题在解决。

上一篇:spring 中property解释以及property标签里面的属性


下一篇:python-property的用法