如何讓用戶從只有指定的文件夾文件選擇getAttachement只能從該文件夾
int returnVal = fc.showOpenDialog(FileChooser.this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = fc.getSelectedFile();
source = file.getAbsolutePath();
fileName = file.getName();
attachText.setText(fileName);
source = source.replace("\\","\\\\");
}
這裏選擇文件,我會從任何文件夾,在這裏我要的文件只給G獲取文件:\項目\附件。我怎樣才能做到這一點?
'文件選擇.this'那是什麼? – 2013-03-14 15:52:33