473,412 Members | 1,973 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,412 software developers and data experts.

JSP Tree Structure

Hi,

I am struggling with the following problem. Can somebody pls help me?.

I have a file name and have a folder File f1= new File("path of the folder");. The folder is a complicated folder structure i.e. contains various files and sub folders which contains further subfolders etc. I want to show the whole folder structure(like tree structure). But, the following code shows only the "WebContent" structure.Please find below the following code:

Expand|Select|Wrap|Line Numbers
  1. File f1 = new File("D:/eclipse/workspace/cms/WebContent");
  2. File[] contents = f1.listFiles();
  3. for (int j=0; j<contents.length; j++) 
  4. {
  5.  
  6.     if(contents[j].isDirectory())
  7.     {
  8.         out.println("Directory : "+contents[j].getName()+"<br/>");
  9.     }
  10.     else
  11.     {
  12.         out.println("Files :"+contents[j].getName()+"<br/>");
  13.     }
  14.  
  15. }
  16.  

If anybody knows the answer, please let me know....

Thanks in Advance,



V. Prasath
Apr 8 '09 #1
3 4421
chaarmann
785 Expert 512MB
make a method from your source, pass as parameter the path (that what you hardcoded in f1), and then call your method recursively. That means, if it's a directory, call yourself with new path parameter, made up of old path+current directory name.
Apr 8 '09 #2
Hi,

Thanks for your reply....

How can i make a method in jsp? I don't know how to make a method for this kind of code. Please let me know if you know....


Thanks in Advance.
Apr 8 '09 #3
chaarmann
785 Expert 512MB
Ok, herewith I let you know that I know. :-)

Classes and methods are the basics of Java programming. If you don't know how to define a method with parameters, then do Sun's Java tutorial first to get the basic knowledge.

If you know how to write a method, but you don't know how to do that in JSP, read the jsp tutorials. For a quick start, I'll give you an example:
Expand|Select|Wrap|Line Numbers
  1. <%!
  2. private String printFolder(String fullFolderName)
  3. {
  4.  return "printFolder was called with: " + fullFolderName;
  5. }
  6. %>
  7.  
  8. Now I am calling my method. It returns:
  9. <%= printFolder("root") %>
  10.  
Apr 8 '09 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

3
by: Steve Johnson | last post by:
Been banging my head on this for two days now. Hope someone can help! My test program below is in the form of a single JSP, with a Node class build in. (All the coded needed to run is below.) ...
2
by: ragha | last post by:
Dear friends I am emulating thr tree structure mentioned in the article http://www.15seconds.com/issue/010921.htm I have succesfully created the folder structure for level 2 I need this...
1
by: googleo | last post by:
Hi, in my application I want to handle and store data in a hierarchic data structure. For example: persons who manage houses; houses have various numbers of floors; floors have various numbers...
1
by: Srihari | last post by:
I'm trying to develop a tree structure using javascript. The node values of the tree are generating from a mysql table depending on login. The tree structure contains 3 sub levels. I developed...
4
by: Stephan Tobies | last post by:
Hi everyone, I am looking for a good data structure that could be used to represent families of trees with shared sub-trees and copy-on-write semantics. On a very abstract level, I would like...
3
by: _DS | last post by:
Problem with mapping a directory tree to a tree control: It takes a while to recurse subdirs and map them to nodes. This is solved in some books I've seen (MacDonald, Albahari) by reading the...
1
by: David Hirschfield | last post by:
I've written a tree-like data structure that stores arbitrary python objects. The objective was for the tree structure to allow any number of children per node, and any number of root nodes...and...
5
by: hankypan1 | last post by:
Hi All, I need a tree data structure for my application. It is the non -cyclic simple tree where i can have any number of children node and each child can recursively become a sub tree like a...
8
by: =?ISO-8859-1?Q?m=E9choui?= | last post by:
Problem: - You have tree structure (XML-like) that you don't want to create 100% in memory, because it just takes too long (for instance, you need a http request to request the information from...
0
by: mac | last post by:
I found that with memory allocating techniques used nowadays (addresses alignment, eg. on 32bit machines) one can detect loops in a tree structure very fast, without using extra memory. This is due...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.