Swing/DropDownHistory のバックアップ(No.7)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/DropDownHistory へ行く。
- 1 (2007-05-29 (火) 14:15:48)
- 2 (2013-03-07 (木) 15:45:41)
- 3 (2015-01-30 (金) 19:32:40)
- 4 (2016-08-05 (金) 12:57:19)
- 5 (2016-09-20 (火) 04:59:55)
- 6 (2017-11-01 (水) 15:20:18)
- 7 (2019-05-23 (木) 17:50:34)
- 8 (2021-02-16 (火) 17:07:06)
- 9 (2025-01-03 (金) 08:57:02)
- 10 (2025-01-03 (金) 09:01:23)
- 11 (2025-01-03 (金) 09:02:38)
- 12 (2025-01-03 (金) 09:03:21)
- 13 (2025-01-03 (金) 09:04:02)
- category: swing
folder: DropDownHistory
title: JComboBoxのアイテム履歴
tags: [JComboBox]
author: aterai
pubdate: 2006-05-08T08:25:26+09:00
description: JComboBoxで入力した文字列などのアイテムを順に保存します。
image:
概要
JComboBox
で入力した文字列などのアイテムを順に保存します。
Screenshot

Advertisement
サンプルコード
public static boolean addItem(JComboBox<String> combo, String str, int max) {
if (Objects.isNull(str) || str.isEmpty()) {
return false;
}
combo.setVisible(false);
DefaultComboBoxModel<String> model = (DefaultComboBoxModel<String>) combo.getModel();
model.removeElement(str);
model.insertElementAt(str, 0);
if (model.getSize() > max) {
model.removeElementAt(max);
}
combo.setSelectedIndex(0);
combo.setVisible(true);
return true;
}
View in GitHub: Java, Kotlin解説
JComboBox
に検索する文字列が入力されて、検索ボタンが押されるたびに履歴を更新しています。上記のサンプルでは、4
個まで履歴を保存し、それ以上は古いものから消されます。履歴にある文字列が再度検索された場合は、それを一番上に移動しています。