Swingでディレクトリ選択
コピペした場合はコード中の2文字の全角空白を4文字の半角空白に置換してください。
――――――――――――――――――――
import javax.swing.JFrame;
import java.awt.Container;
import javax.swing.JLabel;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import static javax.swing.JFrame.EXIT_ON_CLOSE;
import static javax.swing.JFileChooser.DIRECTORIES_ONLY;
import static javax.swing.JFileChooser.APPROVE_OPTION;
public class Main {
public static void main(String[] args) throws Exception {
JFrame frame = new JFrame();
frame.setTitle("ディレクトリ選択"); //ウィンドウのタイトルバーのタイトル
frame.setSize(800, 300); //初期表示のウィンドウの横幅と高さ
frame.setLocationRelativeTo(null); //モニターの中央に表示
frame.setDefaultCloseOperation(EXIT_ON_CLOSE); //ウィンドウ右上のXボタンで終了
Container container = frame.getContentPane();
container.setLayout(null); //LayoutManagerを使わず座標を指定して自由に配置
JLabel dirLabel = new JLabel("");
dirLabel.setSize(10, 10);
dirLabel.setLocation(10, 40); //座標を指定
container.add(dirLabel);
JButton dirSelectButton = new JButton("ディレクトリ選択");
dirSelectButton.setSize(160, 20);
dirSelectButton.setLocation(10, 10); //座標を指定
container.add(dirSelectButton);
//ディレクトリ選択ボタンが押された時の処理
dirSelectButton.addActionListener(
actionEvent -> {
JFileChooser fileChooser = new JFileChooser();
fileChooser.setFileSelectionMode(DIRECTORIES_ONLY);
if (fileChooser.showOpenDialog(container) == APPROVE_OPTION) {
dirLabel.setText(fileChooser.getSelectedFile().getAbsolutePath());
dirLabel.setSize(dirLabel.getText().length() * 20, 10);
}
}
);
frame.setVisible(true); //ウィンドウを表示
}
}
――――――――――――――――――――
新規登録で充実の読書を
- マイページ
- 読書の状況から作品を自動で分類して簡単に管理できる
- 小説の未読話数がひと目でわかり前回の続きから読める
- フォローしたユーザーの活動を追える
- 通知
- 小説の更新や作者の新作の情報を受け取れる
- 閲覧履歴
- 以前読んだ小説が一覧で見つけやすい
アカウントをお持ちの方はログイン
ビューワー設定
文字サイズ
背景色
フォント
組み方向
機能をオンにすると、画面の下部をタップする度に自動的にスクロールして読み進められます。
応援すると応援コメントも書けます