コンストラクタ/説明 | 引数 | 引数説明 |
---|---|---|
JFileChooser() ユーザーのデフォルトディレクトリを参照するファイル選択を生成 |
- | - |
JFileChooser(File currentDirectory) 指定された File をパスを参照するファイル選択を生成 |
currentDirectory | 初期ディレクトリ |
JFileChooser(File currentDirectory, FileSystemView fsv) 指定された File をパスを参照し、指定された FileSystemView を使ってファイル選択を生成 |
currentDirectory | 初期ディレクトリ |
fsv | FileSystemView | |
JFileChooser(File currentDirectory, FileSystemView fsv) 指定された FileSystemView を使ってファイル選択を生成 |
fsv | FileSystemView |
JFileChooser(String currentDirectoryPath) 指定されたパスを参照するファイル選択を生成 |
currentDirectoryPath | 初期ディレクトリ |
JFileChooser(String currentDirectoryPath, FileSystemView fsv) 指定されたパスを参照し、指定された FileSystemView を使ってファイル選択を生成 |
currentDirectoryPath | 初期ディレクトリ |
fsv | FileSystemView |
2016/05/13 新規作成