我正在制作一个将过滤器应用于图片的应用程序。它会在选择源文件后立即询问用户保存新文件的位置。是否可以使用源文件名+ _filtername?
预填充保存对话框答案 0 :(得分:2)
答案 1 :(得分:0)
此对话框用于打开对话框
JFileChooser fd = new JFileChooser();
fd.showOpenDialog(this);
if(fd.getSelectedFile()==null&&pro_pic_text.getText().toString().trim().equals(""))
{
JOptionPane.showMessageDialog(this,"Choose your Profile Picrure","Warning",JOptionPane.WARNING_MESSAGE);
}
else
{
fileName = fd.getSelectedFile().getAbsolutePath();
File ff = new File(fileName);
String ffname = ff.getName();
int aa = ffname.indexOf(".");
fftype = ffname.substring(aa+1);
if(fftype.equals("png") || fftype.equals("PNG") || fftype.equals("JPEG") || fftype.equals("jpeg") || fftype.equals("JPG") || fftype.equals("jpg"))
{
if(ff.length()<=51300)
{
pro_pic_text.setText(fileName);
}
else
{
JOptionPane.showMessageDialog(this,"File size larger then 50kb not allowed","Warning",JOptionPane.WARNING_MESSAGE);
pro_pic_text.setText("");
}
}
else
{
JOptionPane.showMessageDialog(this,"Choose JPEG, JPG or PNG File","Warning",JOptionPane.WARNING_MESSAGE);
pro_pic_text.setText("");
}
}
使用此代码我的英语不好
此代码有一些验证,如支持的文件必须少于50KB,只有JPEG,jpeg,jpg,JPG,PNG,png文件
我认为这对你有帮助