<%!
//递归实现树形结构显示
public String getList(int parent_id) throws java.io.IOException {
String strTree = "";
String sql = "select * from tree where tree_parent='" + parent_id +"'";
/*执行sql语句得到结果row,伪代码哦。*/
try{
for(int rownum = 0; rownumString tree_id = row.get("tree_id");
String tree_name = row.get("tree_name"));
strTree += "节点:"+tree_name ;
strTree += this.getList(Integer.valueOf(tree_id));
}
} catch(Exception e) {
e.printStackTrace(System.out);
}
return strTree;
}
%>
<%
out.print(getList(5));
%>
注意这个是一个jsp方法,前面要用 <%! ,并且方法中不能用out这个对象。 - from the5fire.com
----EOF-----
微信公众号:Python程序员杂谈
微信公众号:Python程序员杂谈