Java Beans/Enterprise dev question

Joined
Dec 2, 1999
Messages
12,249
Since thw c++ thread is working out, I thought I'd ask this.

I'm currently working on a project where we intend to use tomcat server and some JSP pages. We're using Eclipse and MyEclipse for development. Specifically, I want to use an multiple select file browse thingy. I know Apache and myfaces have extensions but I'm having trouble locating the class/bean extension that I want. I need some sort of visual picture to say, yeah, that's the one I want.

Any suggestions? Thanks.
 
I would keep it simple and just use a JSP, with some standard java file io in a servlet behind it, showing the current path and subdirectories as clickable links to change directories and displaying the files in the current directory in an HTML form multiple select input tag (boxes).

It is not flashy but is easy and intuitive. It can also be extended without much more code to do the other file related things like searching, moving files around, editing, all the other standard io behaviours.
 
Back
Top