JFileChooser

JFileChooser

View Answers

June 18, 2008 at 1:16 PM

Hi friend,

import java.io.*;
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
import java.util.*;


public class FileChooser extends JPanel implements ActionListener {
JButton button;
JFileChooser chooser;
String choosertitle;

public FileChooser(){
button = new JButton("Click me");
button.addActionListener(this);
add(button);
}

public void actionPerformed(ActionEvent e) {
int result;

chooser = new JFileChooser();
chooser.setCurrentDirectory(new java.io.File("."));
chooser.setDialogTitle(choosertitle);
chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
chooser.setAcceptAllFileFilterUsed(false);
if (chooser.showOpenDialog(this) == JFileChooser.APPROVE_OPTION) {
System.out.println("getCurrentDirectory(): " + chooser.getCurrentDirectory());
System.out.println("Get selected file is : " + chooser.getSelectedFile());
}
else {
System.out.println("No Selection file");
}
}

public Dimension getPreferredSize(){
return new Dimension(300, 300);
}

public static void main(String s[]) {
JFrame frame = new JFrame("Directory chooser file example");
FileChooser panel = new FileChooser();
frame.addWindowListener(
new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
}
);
frame.getContentPane().add(panel,"Center");
frame.setSize(panel.getPreferredSize());
frame.setVisible(true);
}
}

----------------------------------------------------------------------

Read for more information,

http://www.roseindia.net/java/

Thanks









Related Tutorials/Questions & Answers:
JFileChooser - Java Beginners
JFileChooser  How to create a GUI application that allows a user to select a text file (using the JFileChooser). The program will then count...(ActionEvent e){ JFileChooser chooser = new JFileChooser
Using a JFileChooser - Java Beginners
Using a JFileChooser  Dear Editor, How to select an image from JFileChooser & add the image in mySQL5 database? Thanks in advanced. Regards... void main(String[] args) { JFileChooser chooser = new JFileChooser(); int
Advertisements
JFileChooser - Swing AWT
JFileChooser  Hi,iam using jfilechooser to select a directory....now... ActionListener { JButton button; JFileChooser chooser; String... JFileChooser(); chooser.setCurrentDirectory(new java.io.File
How to open a file in java using JFileChooser
How to open a file in java using JFileChooser  How to open a file in java using JFileChooser
wait until a file is opened using JFileChooser
JFileChooser to open a file. b. call a funtion that takes in the filename as argument...){ JFileChooser chooser=new JFileChooser(); int ret = chooser.showDialog
How to select default FileFilter when creating a JFileChooser dialog?
How to select default FileFilter when creating a JFileChooser dialog? ... default FileFilter when creating a JFileChooser dialog? Thanks   Hi, Following code can be used: JFileChooser c = new JFileChooser
Java Code - Swing AWT
Java Code  Write a Program using Swings to Display JFileChooser that Display the Naem of Selected File and Also opens that File
Java Program - Swing AWT
Java Program  A Java Program that display image on ImageIcon after selecting an image from the JFileChooser
java - Swing AWT
java  iam getting the xml result then i'll save my result in folder using jfilechooser in swings.give me any examples
Java file browser
. It has provide this utility too by introducing the class JFileChooser. Through...()- This method of JFileChooser class open the dialog and allow to select the file. getSelectedFile()- This method of JFileChooser class returns the selected
Java file browse
file or directory from a list. The JFileChooser class opens up a file browser... of JFileChooser class open the dialog and allow to select the file. getSelectedFile()- This method of JFileChooser class returns the selected file. getName
menuItem and actionPerformed
actionPerformed(ActionEvent e) { JFileChooser chooser=new JFileChooser... actionPerformed(ActionEvent e) { JFileChooser chooser=new JFileChooser...() { public void actionPerformed(ActionEvent e) { JFileChooser
Java File Chooser
purposes. Among them, JFileChooser is a standard dialog for selecting a file from.... getSelectedFile()- This method of JFileChooser class returns the selected file...*; public class FileChooser { public static void main(String[] args) { JFileChooser
java swing - Java Beginners
Maheshwari.  Hi Friend, If you want to use JFileChooser then use...(String[] args) { JFileChooser chooser = new JFileChooser
Open TextFile on JButton Click - Java Beginners
Open TextFile on JButton Click  Hello Sir I Want to open TextFile on JButton Click. plz Help Me  Hi Friend, Do you want to simply open the text file or you want to open the file using JFileChooser,read that file
JFRAME - Java Beginners
() { public void actionPerformed(ActionEvent e) { JFileChooser chooser=new JFileChooser(); chooser.showOpenDialog(null... actionPerformed(ActionEvent e) { JFileChooser chooser=new JFileChooser
How to get filename in JTextArea in following case?
saveasdirectorybuttonActionPerformed(java.awt.event.ActionEvent evt) { JFileChooser fc = new JFileChooser(); fc.setSelectedFile(new File("c:/Temp/anyFilename.txt... actionPerformed(ActionEvent e){ JFileChooser fc = new JFileChooser
File transfer to teh server - Java Beginners
an application where the user select several fiels using JFileChooser... { JFileChooser jf = new JFileChooser("C:"); jf.setMultiSelectionEnabled..."); JFileChooser jf2 = new JFileChooser(allinone); int returnVal
java code - Java Beginners
){ JFileChooser chooser = new JFileChooser(); int returnVal = chooser.showOpenDialog(null...(ActionEvent e){ JFileChooser chooser = new JFileChooser(); int returnVal... actionPerformed(ActionEvent e){ JFileChooser chooser = new JFileChooser(); int
How I Choose a folder - Java Interview Questions
static void main(String[] args) { JFileChooser chooser = new JFileChooser(); chooser.setFileSelectionMode(JFileChooser.DIRECTORIES
java swings - Java Beginners
(ActionEvent e) { JFileChooser chooser = new JFileChooser
java swings - Java Beginners
) { JFileChooser chooser = new JFileChooser(); int returnVal
java swings - Java Beginners
(imgPanel); } public void actionPerformed(ActionEvent e) { JFileChooser chooser = new JFileChooser(); chooser.setCurrentDirectory(new java.io.File
Java get File Type
) of class JFileChooser returns the file type.  ADS_TO_REPLACE_1    ...;  JFileChooser chooser = new JFileChooser();  
Concatenate 2D arrays
Concatenate 2D arrays  JFileChooser jf = new JFileChooser(); jf.setMultiSelectionEnabled(true); int returnVal = jf.showOpenDialog(frame); File[] file = jf.getSelectedFiles(); for(int i=0;i<file.length;i
File transfer from client to server - Java Beginners
File transfer from client to server  hi,, I've been trying to make an application where the user select a file using JFileChooser and then the program directly send it to the server using client/server sockets, I've tried
java swings - Java Beginners
(ActionEvent e) { JFileChooser chooser = new JFileChooser(); int returnVal...) { JFileChooser chooser = new JFileChooser(); chooser.setCurrentDirectory(new
File format validation and text field validation in java swings
File format validation and text field validation in java swings   i am reading a jpg image file throuh jfilechooser in java swings,when we press browse button for selecting file it will display filechooser in this process when
Java Code - Java Beginners
Java Code  A Java Program to load Image using Swings JFileChooser...) { JFileChooser chooser = new JFileChooser(); chooser.addChoosableFileFilter(new... fi=file.getName(); File f = new File(fi); JFileChooser chooser1 = new
Error in laodin and saving the image . - Swing AWT
facing problem while laoding and saving the image with help of JFileChooser class..., null); } public static void main(String[] args) { JFileChooser chooser = new JFileChooser(); chooser.addChoosableFileFilter(new ImageFileFilter()); int
Upload Photo to Server
({}); BufferedImage image=null; JFileChooser chooser = new JFileChooser
Photo upload, Download
({}); BufferedImage image=null; JFileChooser chooser = new JFileChooser
java - Java Interview Questions
UploadText(){ final JFileChooser chooser = new JFileChooser
java code - Swing AWT
) { JFileChooser chooser = new JFileChooser(); int returnVal = chooser.showOpenDialog
how to upload photo - Java Beginners
"); final JFileChooser fc = new JFileChooser(); JButton browse = new JButton
creating browse button - Java Beginners
); } } class Chooser extends JFrame { JFileChooser chooser; String fileName; public Chooser() { chooser = new JFileChooser
java swings - Java Beginners
); } public void actionPerformed(ActionEvent e) { JFileChooser chooser = new JFileChooser(); int returnVal = chooser.showOpenDialog(null); File file = null
java - Java Beginners
openFile () { JFileChooser fc = new JFileChooser (); fc.setDialogTitle ("Open... file = null; JFileChooser fc = new JFileChooser (); // Start in current directory........"); } } } boolean openFile (){ JFileChooser fc = new JFileChooser
java swings - Java Beginners
) { JFileChooser chooser = new JFileChooser(); int returnVal = chooser.showOpenDialog(null
java image loadin and saving problem - Swing AWT
static void main(String[] args) { JFileChooser chooser = new JFileChooser...){ String fi=file.getName(); File f = new File(fi); JFileChooser chooser1 = new JFileChooser(); chooser1.setSelectedFile(f); int returnVal
question
){ JFileChooser fc = new JFileChooser(); int returnval
Regarding Image in Swings
) { JFileChooser chooser = new JFileChooser(); chooser.addChoosableFileFilter(new
uploading a text file into a database
(ActionEvent e){ JFileChooser chooser=new JFileChooser
generate columns in file using tab delimeter - Swing AWT
generate columns in file using tab delimeter   Hi, I have problem ........i have imported all the files in a directory using JFIleChooser..now the problem is the content in file can be viewed as excel sheet and also can
java-select dynamic files. - Java Beginners
Friend, If you are working in Java Swing then you can use JFileChooser to open
create folder chooser - Java Server Faces Questions
[]) { JFileChooser chooser = new JFileChooser... saveFile = new File("image." + "jpg"); JFileChooser chooser = new JFileChooser(); chooser.setSelectedFile(saveFile); int val
java - Swing AWT
it either on panel or frame.But in my project,i have to image using JFileChooser...) { JFileChooser chooser = new JFileChooser(); chooser.addChoosableFileFilter(new
Java Code - Swing AWT
Java Code  How to Display a Save Dialog Box using JFileChooser and Save the loaded Image from Panel in any Location.  Hi Friend, Try... File("image." + "jpg"); JFileChooser chooser = new JFileChooser
java - Java Beginners
....."); } } } boolean openFile (){ JFileChooser fc = new JFileChooser... = null; JFileChooser fc = new JFileChooser (); fc.setCurrentDirectory (new File...){ JFileChooser chooser = new JFileChooser(); chooser.addChoosableFileFilter(new
Create a counter in mySQL 5 database through Java - SQL
Create a counter in mySQL 5 database through Java  Dear Editor, Thanks for your valuable Java code example for JFileChooser. I had another question regarding Java & mySQL 5 database

Ads