如何使用java列出所有打开的文件和目录?
如何在java小程序或控制台中获取所有打开的文件、文档和目录详细信息?
How to get the all open files,doc,and dir details in java applet or console?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在java小程序或控制台中获取所有打开的文件、文档和目录详细信息?
How to get the all open files,doc,and dir details in java applet or console?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
你不能那样做。 Applet API 存在安全限制,将阻止您访问对文件进行操作的低级 I/O 函数。
即使您最终可能会访问单个文件(如果在运行的计算机上操纵您的 Apple 安全策略),但访问所有打开的目录和文件需要您在 JVM 中没有的更高权限。
You can't do that. There are security restrictions on Applet API that will prevent you from accessing low level I/O functions that operates on files.
Even though you might end up accessing individual files (if manipulate your apple security policy on the running machine), access to all open directory and files require higher privileges that you don't have in JVM.