1

经过大量搜索后,我仍然无法找到是否可以在我的 .java 文件中使用 lib***.a 的一件事。

i.e:
static {
    // Library
    System.loadLibrary("***");
}

当我阅读You must provide a native shared library that contains the implementation of these methodsoverview.html 中的这一行时,我产生了这个疑问。

所以任何人都可以告诉我是否可以在 .java 文件中使用 lib***.a 。

如果是,那怎么办?

因为you should not use the 'lib' prefix and '.so' suffix here.写在overview.html中。

4

1 回答 1

3

看来你不能。据我所知,Java原生接口使用动态库加载代码运行时;我确信归档库 (.a) 无法做到这一点。

于 2012-08-01T04:50:32.957 回答