我在使用JFileChooser时遇到以下奇怪的问题
package sandbox;
import java.io.File;
import javax.swing.JFileChooser;
/**
*
* @author yccheok
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
final JFileChooser chooser = new JFileChooser();
chooser.setAcceptAllFileFilterUsed(false);
// STRANGE! Using "TEST", when dialog box pop up, you see empty in file name field.
// However, using other name like "TESTX", when dialog box pop up, you see "TESTX" in file name field.
//chooser.setSelectedFile(new File("TESTX"));
chooser.setSelectedFile(new File("TEST"));
chooser.showOpenDialog(null);
}
}
这是我的机器问题吗?还是你们都面临着同样的问题?供您参考,我正在使用Vista。
最佳答案
new File("TESTX")
和new File("TEST")
都将在JFileChooser的文本字段中分别显示TESTX和TEST(如预期)。
关于java - 在JFileChooser中将TEST作为selectedFile的奇怪问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1537541/