Java JNI:可以在 IExplorer 中管理缓存、历史记录、临时文件吗?
有没有办法使用 JNI / Java-Com 桥来管理 Java 中的 Internet Explorer 缓存、历史记录和临时文件选项?更好的Java库可以促进这一点吗?
Is there a way to use JNI / Java-Com bridge to manage Internet Explorer's cache, history and temporary file options from Java? better a Java library which facilitates this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议查看 JNA (Java Native Access) 库。该库将允许您从纯 Java 调用任何 Win32 .DLL API,而无需编写任何 JNI (C/C++) 代码。它被数百个项目使用,并且按照广告宣传的那样工作。我会用它来包装管理 IE 缓存、历史记录等所需的十几个 API。如果您通过 Google 搜索 JNA 和 Win32,您可能会找到很多示例。
I would recommend looking at the JNA (Java Native Access) library. This library will allow you to call any Win32 .DLL API from pure Java, without writing any JNI (C/C++) code. It is used by hundreds of projects and works as advertised. I would use it to wrap the dozen or so API's that you'll need to manage the IE cache, history, etc. If you Google around for JNA and Win32, you're likely to find lots of examples.