タイトル
TOPJavaSwingJFileChooser → This Page

JFileChooser@Swing コンストラクタ

概要

Java - Swing - JFileChooser のコンストラクタの説明です。

コンストラクタ

コンストラクタ/説明引数引数説明
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 新規作成


TOPJavaSwingJFileChooser → This Page