aspose file tools
The moose likes Swing / AWT / SWT and the fly likes Creating a browse button Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "Creating a browse button" Watch "Creating a browse button" New topic
Author

Creating a browse button

Bharadwaj Adepu
Ranch Hand

Joined: Dec 30, 2007
Posts: 99
Hi how can i ceate a browse button using swing?

But actualy i want to browse and select a directory and
not a specific file how do i do that?

If the answer is JFileChooser how can the directory selection is possible with that.


SCJP 1.5
Gregg Bolinger
Ranch Hand

Joined: Jul 11, 2001
Posts: 15229

http://java.sun.com/docs/books/tutorial/uiswing/components/filechooser.html

About a quarter way down the page:


Finally, the example program has commented-out lines of code that let you change the file selection mode. For example, the following line of code makes the file chooser able to select only directories, and not files:

fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Creating a browse button
 
Similar Threads
File Chooser Dialog box
how to upload an image through jsp
How To Make the "Browse ..." Button Work?
Browse Button in HTML For Directory Selection
How I can put a Browse button?