Java IO 外部 jar
我正在开发一个基于浏览器的小程序游戏,我打算将前十名分数存储在包含 JAR 文件的目录中的文本文件中。如果文本文件位于 JAR 文件之外,我将如何读取和写入该文本文件?
I'm working on a browser based applet game, and I intend to store the top ten scores in a text file in the directory with the JAR file. How would I read and write to a text file if it's outside the JAR file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,执行此操作的唯一方法是通过 JNLP持久化服务
As far as I know the only way to do this is via the JNLP persistence service
签名小程序(jar、JNLP)与运行该小程序的用户具有相同的磁盘 IO 权限。
否则,
javax.jnlp。 PersistenceService
是您最好的选择。A signed applet (jar, JNLP) has the same disk IO permissions as the user running the applet.
Otherwise,
javax.jnlp.PersistenceService
is your best bet.