我可以在 Java Applet 中使用 JNI 吗?
是否可以在Applet中使用JNI(Java Native Interface),有人尝试过吗?
Is it possible to use JNI (Java Native Interface) in Applets, has anyone has tried?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以从小程序中使用 JNI,只需记住小程序在客户端上运行,因此 JNI 将访问客户端的“NI”部分。
You can use JNI from an applet, just remember that the applet is running on the client so JNI will be accessing the client for the "NI" part.
我不太擅长 JNI,但我在 google 上搜索了可以帮助你的链接。它包含有关使用 JNI 访问 DLL 的信息。看一下:
通过 JNI 从 Applet 调用 DLL
I'm not quite good in JNI but I googled link which can help you. It contains info about accessing DLL with JNI. Take a look:
Calling a DLL from an Applet via JNI