java想做个按钮,点下直接弹出选择路径..不知道怎么做,又会的高手请指教..下面是创建按钮后的代码
1个回答
展开全部
public String showChooserWindow(String type, String title, String[] style) {
String path = null;
JFileChooser chooser = new JFileChooser();
/* 过滤文件类型 */
FileNameExtensionFilter filter[] = new FileNameExtensionFilter[style.length];
for (int i = 0; i < style.length; i++) {
filter[i] = new FileNameExtensionFilter("." + style[i], style[i]);
chooser.setFileFilter(filter[i]);
}
// 设置文件选择框的标题
chooser.setDialogTitle(title);
// 弹出选择框
if (type.equals("save")) {
if (chooser.showSaveDialog(null) == JFileChooser.APPROVE_OPTION) {
try {
path = chooser.getSelectedFile().getCanonicalPath();
} catch (IOException e1) {
e1.printStackTrace();
}
}
} else if (type.equals("open")) {
if (chooser.showOpenDialog(null) == JFileChooser.APPROVE_OPTION) {
try {
path = chooser.getSelectedFile().getCanonicalPath();
} catch (IOException e1) {
e1.printStackTrace();
}
}
}
System.out.println(path);
return path;
}
上面是我写的一个方法
如果你要打开选择窗口的话这样调用
String[] s={"doc",'txt'","jpg"};这个是你要打开的文件类型
showChooserWindow("open","选择文件",s);这个是调用语句了
String path = null;
JFileChooser chooser = new JFileChooser();
/* 过滤文件类型 */
FileNameExtensionFilter filter[] = new FileNameExtensionFilter[style.length];
for (int i = 0; i < style.length; i++) {
filter[i] = new FileNameExtensionFilter("." + style[i], style[i]);
chooser.setFileFilter(filter[i]);
}
// 设置文件选择框的标题
chooser.setDialogTitle(title);
// 弹出选择框
if (type.equals("save")) {
if (chooser.showSaveDialog(null) == JFileChooser.APPROVE_OPTION) {
try {
path = chooser.getSelectedFile().getCanonicalPath();
} catch (IOException e1) {
e1.printStackTrace();
}
}
} else if (type.equals("open")) {
if (chooser.showOpenDialog(null) == JFileChooser.APPROVE_OPTION) {
try {
path = chooser.getSelectedFile().getCanonicalPath();
} catch (IOException e1) {
e1.printStackTrace();
}
}
}
System.out.println(path);
return path;
}
上面是我写的一个方法
如果你要打开选择窗口的话这样调用
String[] s={"doc",'txt'","jpg"};这个是你要打开的文件类型
showChooserWindow("open","选择文件",s);这个是调用语句了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询