views:

62

answers:

4

I need develop a Java UI similar to windows explorer. The interface should have itens like icons and drag'n drop feature.

+1  A: 

These things are all possible in Java, but your question is much too vague for a specific answer. You will have to learn a UI toolkit such as AWT, Swing, SWT, etc. The toolkit will provide components from which you can build such a UI. You will probably even find pre-built systems if you do a little research with your favorite search engine.

SO is a place where you can ask specific questions that need specific answers while you are learning the UI toolkit(s).

Jim Garrison
A: 

maybe you should google "Java look and feel" here is a link that can help you: http://download-llnw.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html

GeorgeBecj
A: 

As a starting point, you may want to look at the source code for javax.swing.JFileChooser. The JFileChooser class produces much of what you're looking for, though it's designed for things like "open file(s)" and "save file" dialogs, rather than an explorer window.

The source for JFileChooser is available in the JDK distribution from Sun, or you can find it online.

Brian S