打印一棵“树” JSP页面的结构

发布于 2024-09-14 18:46:08 字数 551 浏览 5 评论 0原文

我试图在我的 JSP 页面中打印出一个“树”结构,看起来像这样:

Root
 |
 |----Dependencies
 |        |----A
 |        |----B
 |        |----C
 |
 |----Dependents
          |----D
          |----E

我希望这里有人知道一些可以帮助我完成工作的实用程序(它可以使用任何技术,就像只要我可以将它插入到我的 JSP 页面中)。根和其他变量都是字符串(A、B、C 等...)。

我计划使用这样的东西:(我还没有写这个,所以我不确定它是否会起作用...)

public class DependencyTree 
{ 
  private String root; 
  private ArrayList<String> dependencies, dependents; 
} 

基本上, root 对应于我上面的示例中的“root”,并且这两个ArrayList 分别包含 A、B、C 和 D、E。

I'm trying to print out a "tree" structure in my JSP page that looks something like this:

Root
 |
 |----Dependencies
 |        |----A
 |        |----B
 |        |----C
 |
 |----Dependents
          |----D
          |----E

I'm hoping that someone around here knows of some utility that would help me do my job (it can use any technology, just as long as I can insert it in my JSP page). The Root and the other variables are all Strings (A, B, C etc...).

I'm planning on using something like this: (I haven't written this yet, so I'm not sure if it'll work...)

public class DependencyTree 
{ 
  private String root; 
  private ArrayList<String> dependencies, dependents; 
} 

Basically, root corresponds to "root" on my example above, and the two ArrayLists contain A, B, C and D, E respectively.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

撞了怀 2024-09-21 18:46:08

如果您不介意在 JSP 中使用一些 javascript 来呈现树,jsTree 是一个 jQuery 组件,它支持 JSON 和 XML 数据源来填充树视图:

http://ajaxian.com/archives/jstree-jquery-based-javascript-tree-component

编辑:以下是有关该组件入门的一些更具体的信息:http ://www.jstree.com/documentation/core

If you don't mind using some javascript to render the tree in your JSP, jsTree is a jQuery component which supports JSON and XML data sources to populate a tree view:

http://ajaxian.com/archives/jstree-jquery-based-javascript-tree-component

Edit: Here is some more specific information on getting started with the component: http://www.jstree.com/documentation/core

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