Java:获取war文件内目录中的文件名列表

发布于 2024-11-15 19:46:17 字数 259 浏览 3 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌路终见情 2024-11-22 19:46:17

在 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()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文