如何在加载 DLL 时加载 JVM 并在卸载 DLL 时释放它
我正在开发一个 dll,它调用一个 jar 通过 JNI 完成大部分工作。如何创建 DLL,使其在加载 DLL 时仅创建一次 JVM,并在卸载 DLL 时释放它?
I'm developing a dll which invokes a jar to do most of the work through JNI. How can I create the DLL such that it creates the JVM only one time when the DLL is loaded and frees it when the DLL is unloaded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
提供一个 DllMain 函数,其模式如下:
Provide a DllMain function, patterned after this: