gpt4 book ai didi

java - 在 JFileChooser 中将 TEST 作为 selectedFile 的奇怪问题

转载 作者:行者123 更新时间:2023-12-02 08:36:43 26 4
gpt4 key购买 nike

我在使用 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com