在 JSP 上创建目录树结构
我最近遇到了 Java DefaultMutableTreeNode 类。我想知道是否有任何类似的类/技术可用于 Servlet/JSP。
我正在开发一个 Web 应用程序,其中数据库表存储各种文件的绝对路径名,我的 servlet 应该从表中读取路径名并将它们显示为目录树结构。
预先非常感谢。任何建议将不胜感激。
I recently came across the Java DefaultMutableTreeNode class. I was wondering if there is any similar classes/technology available for Servlets/JSPs.
I am working on a web application for which a database table stores absolute path name for various files, my servlet is supposed to read the path names from the table and display them as a directory tree structure.
Thanks so much in advance. Any advise will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您会使用 jQuery 插件将路径显示为树吗?
https://www.abeautifulsite.net/jquery-file-tree
Would you use a jQuery plugin to display your paths as a tree?
https://www.abeautifulsite.net/jquery-file-tree
不是开箱即用的。您必须自己创建它或使用第三方标签库或框架。
几个例子:
Not out the box. You have to create it yourself or to head to a 3rd party taglib or framework.
Several examples:
如果您愿意使用 Web 应用程序框架,您还可以考虑 Vaadin 中的 Tree 组件。有关树示例,请参阅 Sampler,包括源代码。
If you are willing to use a web application framework, you may also consider the Tree-component from Vaadin. See the Sampler for a Tree example, including source code.