Java JFileChooser .setDragEnabled (boolean b)
Syntax
JFileChooser.setDragEnabled(boolean b) has the following syntax.
public void setDragEnabled(boolean b)
Example
In the following code shows how to use JFileChooser.setDragEnabled(boolean b) method.
// www . j av a2s. 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.setDragEnabled(true);
chooser.showDialog(new JFrame(""), null);
File curFile = chooser.getSelectedFile();
}
}
Home »
Java Tutorial »
javax.swing »
Java Tutorial »
javax.swing »