Java:获取war文件内目录中的文件名列表
我在 servlet 容器中有一个 Web 应用程序。
如何获取控制器/servlet 内的安全文件夹内的文件列表?
我尝试了这样的事情(这是行不通的):
File security_image_dir = new File("/beta/images/security/");
String security_images[] = security_image_dir.list();
I have a web application in a servlet container.
How can I get the list of files inside security folder inside controller/servlet?
I tried something like this(which is not working):
File security_image_dir = new File("/beta/images/security/");
String security_images[] = security_image_dir.list();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Web 环境中访问文件的标准方法是 ServletContext.getResourceAsStream(String)。如果您想获取文件列表,则可以尝试 ServletContext.getResourcePaths()
The standard way of accessing files within a web environment is ServletContext.getResourceAsStream(String). If you want to get a list of files then you can try ServletContext.getResourcePaths()