前端之家收集整理的这篇文章主要介绍了
如何设置Swing JFileChooser的默认文件名?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在此JFileChooser的文本框中将默认
文件名设置为Untitled.txt.我可以设置吗?
使用以下
代码:
JFileChooser fileChooser = new JFileChooser();
File file = new File("C:/untitled.txt");
fileChooser.setCurrentDirectory(file);
您必须指定untitled.txt的完整路径
原文链接:https://www.f2er.com/java/125232.html