• category: swing folder: NumberEditor title: JSpinnerの値をパーセントで指定 tags: [JSpinner] author: aterai pubdate: 2005-10-31T11:17:46+09:00 description: JSpinnerの値をパーセントで指定するように設定します。 image: https://lh4.googleusercontent.com/_9Z4BYR88imo/TQTQecBWSoI/AAAAAAAAAfo/IOSdDmzOIBs/s800/NumberEditor.png

概要

JSpinnerの値をパーセントで指定するように設定します。

サンプルコード

JSpinner spinner = new JSpinner(new SpinnerNumberModel(0, 0, 1, .01));
JSpinner.NumberEditor editor = new JSpinner.NumberEditor(spinner, "0%");
editor.getTextField().setEditable(false);
spinner.setEditor(editor);
View in GitHub: Java, Kotlin

解説

JSpinner.NumberEditorのコンストラクタに、DecimalFormatオブジェクトのパターンを入力すると数値の解析とフォーマットを行ってくれます。

上記のサンプルでは、数字を表す0と、100倍してパーセントを表す%を組み合わせたフォーマットパターンを使用しています。

コメント