-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.4.0
-
x86
-
windows_nt, windows_xp
Name: gm110360 Date: 09/25/2001
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta2-b77)
Java HotSpot(TM) Client VM (build 1.4.0-beta2-b77, mixed mode)
Operation System: Windows NT (4.0)
Look and Feel Motif
The file chooser (Motif) does not return the file type if this latter is
associated to a program by the operating system. To show the problem, select a
.cmd or .bat, or .doc file.
/**
* MotifFileChooserMerlin.java
*/
import java.lang.*;
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
/**
* Class: MotifFileChooserMerlin
*/
public class MotifFileChooserMerlin extends javax.swing.JFrame
{
/**
* Constructor: MotifFileChooserMerlin
* @return instance of MotifFileChooserMerlin
*/
public MotifFileChooserMerlin()
{
/* JFrame - Bean Properties */
setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE);
setTitle("MotifFileChooserMerlin");
/* JFrame - sets Bounds */
setBounds(40,63,400,200);
/* JPane - Adds Child */
JPanel panel = new JPanel();
JButton buttonMetal = new JButton("FileChooser Metal");
panel.add(buttonMetal);
buttonMetal.addActionListener(new java.awt.event.ActionListener()
{
public void actionPerformed(java.awt.event.ActionEvent e)
{
try
{
UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
showFileChooser();
}
catch (java.lang.Throwable exc)
{
exc.printStackTrace();
}
}
});
JButton buttonWindows = new JButton("FileChooser Windows");
panel.add(buttonWindows);
buttonWindows.addActionListener(new java.awt.event.ActionListener()
{
public void actionPerformed(java.awt.event.ActionEvent e)
{
try
{
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
showFileChooser();
}
catch (java.lang.Throwable exc)
{
exc.printStackTrace();
}
}
});
JButton buttonMotif = new JButton("FileChooser Motif");
buttonMotif.setForeground(Color.red);
panel.add(buttonMotif);
buttonMotif.addActionListener(new java.awt.event.ActionListener()
{
public void actionPerformed(java.awt.event.ActionEvent e)
{
try
{
UIManager.setLookAndFeel("com.sun.java.swing.plaf.motif.MotifLookAndFeel");
showFileChooser();
}
catch (java.lang.Throwable exc)
{
exc.printStackTrace();
}
}
});
/* JFrame - Adds Child */
getContentPane().add(panel,java.awt.BorderLayout.CENTER);
} /* End of Constructor: MotifFileChooserMerlin */
private void showFileChooser()
{
JFileChooser chooser = new JFileChooser();
int retval = chooser.showDialog(this, null);
if (retval == JFileChooser.APPROVE_OPTION)
{
File theFile = chooser.getSelectedFile();
if (theFile != null)
{
String fullPath;
try
{
fullPath = chooser.getSelectedFile().getCanonicalPath();
}
catch (Exception exc)
{
fullPath = chooser.getSelectedFile().getAbsolutePath();
}
theFile = new File(fullPath);
if (!theFile.exists())
{
Toolkit.getDefaultToolkit().beep();
JOptionPane.showMessageDialog(this,"File not found :\n" +
fullPath);
}
else
{
JOptionPane.showMessageDialog(this,"OK file name :\n" +
fullPath);
}
}
else
{
Toolkit.getDefaultToolkit().beep();
JOptionPane.showMessageDialog(this, "null file ");
}
}
else
{
JOptionPane.showMessageDialog(this, "No file was chosen.");
}
}
/**
* Method: main <br>
* Note: Called only if we're an application. <br>
* @param java.lang.String[] args the command line arguments
* @return void
*/
public static void main(java.lang.String[] args)
{
try
{
/* Creates new MainObject */
MotifFileChooserMerlin self = new MotifFileChooserMerlin();
self.show();
} /* End try */
catch (java.lang.Throwable exc)
{
exc.printStackTrace(System.err);
} /* End catch */
} /* End of Method: main */
} /* End of Class: MotifFileChooserMerlin */
(Review ID: 132525)
======================================================================
This only happens in Motif on Windows when the option
"Hide file extension for known file types" is selected
in NT Explorer.
The test case is unnecessary. The problem shows in
FileChooserDemo also.
###@###.### 2002-04-05
- duplicates
-
JDK-4619481 SwingSet 2 Motif JFileChooser on Win XP fails to display image
-
- Closed
-
-
JDK-4801190 JFileChooser does not show registered extensions under Windows with Metal
-
- Resolved
-