使用文件夹名称填充 JSP 下拉列表
如何在 Apache Tomcat 上使用与 JSP 页面位于同一目录中的所有文件夹动态填充下拉列表(在 JSP 页面中)?
How do I populate a dropdown list (in a JSP page) dynamically with all the folders present in the same directory as the JSP page, on Apache Tomcat?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 servletContext.getRealPath("/someuidir-in-your-webapp/somejspdir") 获取该 jsp 目录的绝对路径,然后使用 java.io.File 和 java.io. FileFilter(过滤目录)。这是 javadoc for getRealPath
添加一些代码(您可以将其放入您的 jsp 中)。请注意,这只是一个帮助您开始了解如何操作的示例。它可能需要一些改进(在设计方面)
use
servletContext.getRealPath("/someuidir-in-your-webapp/somejspdir")
to get the absolute path of the directory of that jsp and then use the java.io.File and java.io.FileFilter (filtering directories) . Here's the javadoc for getRealPathAdding some code (You can put this in your jsp). Note that this is just an example to get you started on how to do it. It may need some imporovement (in terms of design)