ユーザーが指定したフォルダからのみファイルを選択できるようにする方法
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:\Project\Attachments からのみファイルが必要な任意のフォルダーからファイルを取得します。これどうやってするの?