Java File browser

342 Views Asked by At

I am in need of a java file system browser without all the buttons and fields. Does swing have any components that can do this ? If not are there any third party components that can help me with this ?

JFileChooser

enter image description here

What I am looking for

enter image description here

In hindsight the question is vague. The JList style view of the component is not exactly what I am looking for. I just need a file browser which will fire an event when user selects something. Whether it is a JList style browser or a tree style brower is secondary. I see there are ways I can code this myself, the reason for posting a question here is to see if there are components that do this already.

1

There are 1 best solutions below

0
On BEST ANSWER

Pretty much yes, you can get the horizontal listing of the files. You will have to use the JList's horizontal wrap for layout orientation. More details about the same can be found here.

JFileChooser wont allow to hide the rest of the controls, as it will end up loosing the core functionality. You will have to make use of your own custom control using the link described above and do the file operations.