-
Bug
-
Resolution: Fixed
-
P2
-
1.4.1_03
-
b32
-
x86
-
windows_nt
Name: wm7046 Date: 11/05/2003
1. Compile and run the testcase
javac -d . DialogTest.java
java an.bn.DialogTest
2. Press the button "Open the File" to bring up the JFileChooser
3. Select a file in the List of files and note that same thing is copied on to the "File Name" edit field.
4. Change the filename in the "File Name" edit field to a non-existing one say "XXX.fmb" and press Open button.
5. Note the return value getting printed on the Command prompt. This indicates that the FileChooser.getSelectedFiles().length is 0 though there is a file name entered in the "File Name" edit field.
6. Bring up the JFileChooser again and now without selecting any files in the List of Files, just enter some file name(non-existing) in the "File Name" edit field.
7. Pressing the Open button, you will notice the output on the command prompt which indicates that the JFileChooser.getSelectedFiles().length has returned 1.
If you follow the same steps on Solaris, you will notice that for both the above mentioned cases, JFileChooser.getSelectedFiles().length is 1 and each time it returns the name of the file in the "File Name" edit field.
Testcase:
DialogTest.java
package an.bn;
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.filechooser.*;
import java.util.StringTokenizer;
public class DialogTest extends JFrame {
static private final String newline = "\n";
JFileChooser fc = null;
public DialogTest() {
super("FileChooserDemo");
//Create the log first, because the action listeners
//need to refer to it.
//Create a file chooser
fc = new JFileChooser();
fc.setMultiSelectionEnabled(true);
TextFilter txt = new TextFilter();
fc.setFileFilter(txt);
fc.addChoosableFileFilter(txt);
fc.setCurrentDirectory(new File(System.getProperty("user.dir")));
//Create the open button
JButton openButton = new JButton("Open a File...");
openButton.setMnemonic(openButton.getText().charAt(0));
openButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
int returnVal = fc.showOpenDialog(null);
if (returnVal == JFileChooser.APPROVE_OPTION) {
File[] selectedFiles = fc.getSelectedFiles();
System.out.println("number of files selected " + selectedFil
es.length);
for (int i=0;i<selectedFiles.length;i++)
{
System.out.println(selectedFiles[i].toString()+"\n");
}
}
else {
System.out.println("Open command cancelled by user." + newli
ne);
}
}
});
//For layout purposes, put the buttons in a separate panel
JPanel buttonPanel = new JPanel(new FlowLayout());
buttonPanel.add(openButton);
//Add the buttons and the log to the frame
Container contentPane = getContentPane();
contentPane.add(buttonPanel);
}
public static void main(String[] args) {
StringBuffer tm=new StringBuffer("\"");
tm.append("THis is new");
tm.append("\"");
System.out.println(tm);
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
}catch (Exception e) { System.out.println("UIManager.setLookAndFeel rai
sed Exception");}
JFrame frame = new DialogTest();
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
frame.pack();
frame.setVisible(true);
}
class TextFilter extends javax.swing.filechooser.FileFilter
{
public boolean accept(File f)
{
if ( f.isDirectory() || f.getName().endsWith("txt") || f.getName
().endsWith("TXT") )
return true;
else
return false;
}
public String getDescription()
{
return "Text Files";
}
}
}
(Review ID: 223309)
======================================================================
- relates to
-
JDK-6186865 JFileChooser does not take full pathname
-
- Resolved
-