Options in Native.loadLibrary
我已经在
1 2 3 |
上面的
api 说:
public static Object loadLibrary(String name,
Class interfaceClass,
Map options)Load a library interface from the given shared library, providing the explicit interface class and a map of options for the library. If no library options are detected the map is interpreted as a map of Java method names to native function names.
If name is null, attempts to map onto the current process.
上面的
这是一个包含图书馆选项的地图。一个这样的选项是函数映射器。
您可以在下面找到一个示例:
1 2 3 4 5 | System.setProperty("jna.library.path","SiUSBXp.dll"); HashMap<String, StdCallFunctionMapper> optionMap = new HashMap<String, StdCallFunctionMapper>(); StdCallFunctionMapper myMapper = new StdCallFunctionMapper(); optionMap.put(Library.OPTION_FUNCTION_MAPPER, myMapper); INSTANCE = (SiUSBXp) Native.loadLibrary("SiUSBXp", SiUSBXp.class, optionMap); |