I want do develop swing component like windows explorer to view the files and folder on the server
Also I want Copy Paste Option for the same
I want to integrate the same in my Web application
Please give me some guideline to start developing such component.
If any existing reference Please give me the link for the same.
To browse the directory structure one usually uses JFileChooser in Swing.
What technology are you planning to use? You mention "web application"
Do you have an applet in mind?
Did you go through the link Mikko gave you?
To build the tree nodes, you will have to query the server (unless your client has access to all folders on the server, which I doubt)
From the nodes, you build a tree which you can display in an applet which is embedded on some web page.