在 JNLP 配置中引用外部文本数据文件
我试图弄清楚如何包含对外部数据文件(以文本形式)的引用,我希望通过 Web Start (JNLP) 与我的应用程序一起分发该文件。筛选 JNLP 结构的文档,我发现您可以包含对 JAR、nativelib 和扩展的引用 - 但是,我没有看到包含文本文件资源的方法。如何完成此操作,以便 Web Start 从服务器下载文本文件并将其与我的应用程序一起存储在本地?
谢谢!
I'm trying to figure out how to include a reference to a external data file (in text form) that I want distributed along with my application via Web Start (JNLP). Sifting through the documentation for the JNLP structure, I see that you can include references to JAR, nativelib, and extensions - however, I don't see a means to include a text file resource. How can I accomplish this so that Web Start will download the text file from the server and store it locally along with my application?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会将其存储在应用程序的 JAR 中,并通过类加载器将其作为资源流加载。
I would store it in the app's JAR and load it as resource stream via class loader.