为什么签名的小程序无法使用 Firefox 将文件写入客户端文件系统?
我有一个小程序(java),它将一些文件写入客户端文件系统。在 Chrome 和 IE 中可以完美运行,在 Firefox 中也可以正常运行,前提是我以管理员权限运行它。 (右键单击 -> 以管理员身份运行)。该解决方案看起来不适合企业应用程序。
顺便说一句,小程序是大型企业 Web 应用程序的一部分。所以我不具备客户端能够以管理员身份运行 Firefox 的安全性。
I have an applet (java) that writes some files to the client file system. In Chrome and IE work perfectly and firefox too, only if I run it with Administrator permissions . (righ click -> Run as administrator). This solution don't look proper for a enterprise application.
By the way the applet is part of a big enterprise web application. So I don't have the security that the clients will be able to run firefox as administrator.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
存储应用程序数据的好地方是 user.home 的子目录。使用基于主类的包名称的子目录,以帮助避免您的“settings.dat”与我们的“settings.dat”冲突!
为了使其更加“Windows 友好”(当然,当相关属性指示 Win 时!)任何 Java 应用程序设置的根目录。可能是 ${user.home}/AppData/Local/Java/
A good place to store application data is in a sub-directory of user.home. Use a sub-directory based on the package name of the main class, to help avoid your 'settings.dat' colliding with our 'settings.dat'!
To make it even more 'Windows friendly' (when the relevant property indicates Win. of course!) the root directory for settings for any Java app. might be ${user.home}/AppData/Local/Java/
难道是 Firefox 本身没有权限写你想要写的地方?
Can it be that it's Firefox itself that doesn't have permissions to write where you want it to write to?