0

私のJavaコード

import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;

@Platform(include="LegacyLibrary.h")
@Namespace("LegacyLibrary")
public class LegacyLibrary {
    public static class LegacyClass extends Pointer {
        static { Loader.load(); }
        public LegacyClass() { 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) {
        // Pointer objects allocated in Java get deallocated once they become unreachable,
        // but C++ destructors can still be called in a timely fashion with Pointer.deallocate()
        LegacyClass l = new LegacyClass();
        l.set_property("Hello World!");
        System.out.println(l.property());
    }
}

LegacyLibrary.h コード

#include <string>

namespace LegacyLibrary {
    class LegacyClass {
    public:
        const std::string& get_property() { return property; }
        void set_property(const std::string& property) { this->property = property; }
        std::string property;
    };
}

フォルダ構造

ここに画像の説明を入力

ここに画像の説明を入力

Java の cpp 関数にアクセスするためにJavacppを使用しています。ドキュメントに記載されている例を実行しようとしています。jniLegacyLibrary.dllVisual Studio 2013 でビルドしてディレクトリに追加し、Eclipse で Java ファイルを実行しました。

次のエラーが表示されます。

スレッド「メイン」での例外 java.lang.UnsatisfiedLinkError: LegacyLibrary$LegacyClass.allocate()V at LegacyLibrary$LegacyClass.allocate(Native Method) at LegacyLibrary$LegacyClass.(LegacyLibrary.java:9) at LegacyLibrary.main(LegacyLibrary.java) :22)

私はcppに非常に慣れていません。私のコードの問題は何ですか?

4

0 に答える 0