tags:

views:

97

answers:

1

I want to create a "browse" button in swing in which when a user "browse" browse button he shold be able to select a location from his hard drive folders to save the file.This is a part of my interface design.how do i do it? I want the path to be displayed onto the text box on the side of browse button.

+3  A: 

You should take a look at Sun's tutorial for the JFileChooser API. This will give you pretty much everything you need to accomplish what you're trying to do.

ninesided