Java JFileChooser .setDialogTitle (String dialogTitle)
Syntax
JFileChooser.setDialogTitle(String dialogTitle) has the following syntax.
public void setDialogTitle(String dialogTitle)
Example
In the following code shows how to use JFileChooser.setDialogTitle(String dialogTitle) method.
//from w ww . j a v a 2 s . c o m
import java.io.File;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
public class Main {
public static void main(String[] argv) throws Exception{
JFileChooser chooser = new JFileChooser();
File f = new File(new File("filename.txt").getCanonicalPath());
chooser.setDialogTitle("asdf");
chooser.showDialog(new JFrame(""), null);
File curFile = chooser.getSelectedFile();
}
}
Home »
Java Tutorial »
javax.swing »
Java Tutorial »
javax.swing »