Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 891793
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T13:56:45+00:00 2026-05-15T13:56:45+00:00

I am implementing a tree tag for one of my practice projects, where I

  • 0

I am implementing a tree tag for one of my practice projects, where I would display the contents of a directory in the form of a tree (recursively). I had implemented a similar requirement as a Custom Tag in Java during the pre-JSP2.0 days.
Handling a directory needs recursion (to handle the subdirectories)! Is it possible to code this as tag files and can they be used in a recursive manner?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T13:56:46+00:00Added an answer on May 15, 2026 at 1:56 pm

    Here is an example of an recursive tag file that displays from a node all it’s children recursivly (used to generate a YUI treeview):

    /WEB-INF/tags/nodeTree.tag:

    <%@tag description="display the whole nodeTree" pageEncoding="UTF-8"%>
    <%@attribute name="node" type="com.myapp.Node" required="true" %>
    <%@taglib prefix="template" tagdir="/WEB-INF/tags" %>
    <li>${node.name}
    <c:if test="${fn:length(node.childs) > 0}">
        <ul>
        <c:forEach var="child" items="${node.childs}">
            <template:nodeTree node="${child}"/>
        </c:forEach>
        </ul>
    </c:if>
    </li>
    

    This can be used in a regular JSP file like this:

    <div id="treeDiv1">
        <ul>
            <c:forEach var="child" items="${actionBean.rootNode.childs}">
                <template:nodeTree node="${child}"/>
            </c:forEach>
        </ul>
    </div>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm implementing a B-Tree, and would like to display it in a simple UI
Given the following inheritance tree, what would be the best way of implementing it
I found two similar questions(infact same question) for implementing tree in python. Can anyone
I am implementing a tree think of it as a folder structure so I
I am implementing a tree browser in HTML. On clicking a node, I call
i am currently implementing a binary tree in c++ and i want to traverse
I'm currently implementing a very complex tree structure to allow for near-instant data access,
I've been implementing my own version of a red-black tree, mostly basing my algorithms
Im implementing a B-tree in C++,I have a stack which saves pairs . my
I am implementing a SPA tree algorithm and is looking for a Visual Studio

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.