打印一棵“树” JSP页面的结构
我试图在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不介意在 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