JavaFX 2.2プロジェクトで作業していますが、TextFieldコントロールの使用に問題があります。ユーザーが入力する文字を各TextFieldに制限したいのですが、プロパティやmaxlengthのようなものが見つかりません。同じ問題がスイングに存在し、 this 方法で解決されました。 JavaFX 2.2でそれを解決する方法は?
これは、一般的なテキストフィールドでジョブを実行するためのより良い方法です。
public static void addTextLimiter(final TextField tf, final int maxLength) {
tf.textProperty().addListener(new ChangeListener<String>() {
@Override
public void changed(final ObservableValue<? extends String> ov, final String oldValue, final String newValue) {
if (tf.getText().length() > maxLength) {
String s = tf.getText().substring(0, maxLength);
tf.setText(s);
}
}
});
}
Undoバグを除いて、完全に機能します。
Java8u40では、新しいクラスTextFormatterを取得しました。その主な責務の1つは、テキスト入力の変更beforeへのフックを提供して、コンテンツにコミットすることです。 。そのフックでは、 accept/rejec tにすることも、提案された変更を変更することもできます。
OPの自己回答 で解決された要件は、
TextFormatterを使用すると、これは次のように実装できます。
// here we adjust the new text
TextField adjust = new TextField("scrolling: " + len);
UnaryOperator<Change> modifyChange = c -> {
if (c.isContentChange()) {
int newLength = c.getControlNewText().length();
if (newLength > len) {
// replace the input text with the last len chars
String tail = c.getControlNewText().substring(newLength - len, newLength);
c.setText(tail);
// replace the range to complete text
// valid coordinates for range is in terms of old text
int oldLength = c.getControlText().length();
c.setRange(0, oldLength);
}
}
return c;
};
adjust.setTextFormatter(new TextFormatter(modifyChange));
サイド:
ここで説明するアプローチと同様のことができます: http://fxexperience.com/2012/02/restricting-input-on-a-textfield/
class LimitedTextField extends TextField {
private final int limit;
public LimitedTextField(int limit) {
this.limit = limit;
}
@Override
public void replaceText(int start, int end, String text) {
super.replaceText(start, end, text);
verify();
}
@Override
public void replaceSelection(String text) {
super.replaceSelection(text);
verify();
}
private void verify() {
if (getText().length() > limit) {
setText(getText().substring(0, limit));
}
}
};
私の問題を解決するために使用した完全なコードは、以下のコードです。 Sergey GrinevのようにTextFieldクラスを拡張し、空のコンストラクターを追加しました。 maxlengthを設定するために、setterメソッドを追加しました。最初にチェックしてから、TextFieldのテキストを置き換えます。これは、maxlengthを超える文字の挿入を無効にするためです。そうしないと、maxlength + 1文字がTextFieldの末尾に挿入され、TextFieldの最初の文字が削除されます。
_package fx.mycontrols;
public class TextFieldLimited extends TextField {
private int maxlength;
public TextFieldLimited() {
this.maxlength = 10;
}
public void setMaxlength(int maxlength) {
this.maxlength = maxlength;
}
@Override
public void replaceText(int start, int end, String text) {
// Delete or backspace user input.
if (text.equals("")) {
super.replaceText(start, end, text);
} else if (getText().length() < maxlength) {
super.replaceText(start, end, text);
}
}
@Override
public void replaceSelection(String text) {
// Delete or backspace user input.
if (text.equals("")) {
super.replaceSelection(text);
} else if (getText().length() < maxlength) {
// Add characters, but don't exceed maxlength.
if (text.length() > maxlength - getText().length()) {
text = text.substring(0, maxlength- getText().length());
}
super.replaceSelection(text);
}
}
}
_
fxmlファイル内(TextFieldLimitedクラスが存在するパッケージの)インポートをファイルの上部に追加し、TextFieldタグをカスタムTextFieldLimitedに置き換えます。
_<?import fx.mycontrols.*?>
.
.
.
<TextFieldLimited fx:id="usernameTxtField" promptText="username" />
_
コントローラクラス内、
上部(プロパティ宣言)、
_@FXML
_
_private TextFieldLimited usernameTxtField;
_
initializeメソッド内でusernameTxtField.setLimit(40);
それで全部です。
文字数の制限と数値入力の強制の両方に、より簡単な方法を使用しています。
public TextField data;
public static final int maxLength = 5;
data.textProperty().addListener(new ChangeListener<String>() {
@Override
public void changed(ObservableValue<? extends String> observable,
String oldValue, String newValue) {
try {
// force numeric value by resetting to old value if exception is thrown
Integer.parseInt(newValue);
// force correct length by resetting to old value if longer than maxLength
if(newValue.length() > maxLength)
data.setText(oldValue);
} catch (Exception e) {
data.setText(oldValue);
}
}
});
このメソッドにより、TextFieldはすべての処理(コピー/貼り付け/元に戻す)を完了できます。拡張クラスを作成するために再要求しないでください。また、変更するたびに新しいテキストをどう処理するかを決めることができます(ロジックにプッシュするか、前の値に戻すか、変更することもできます)。
// fired by every text property change
textField.textProperty().addListener(
(observable, oldValue, newValue) -> {
// Your validation rules, anything you like
// (! note 1 !) make sure that empty string (newValue.equals(""))
// or initial text is always valid
// to prevent inifinity cycle
// do whatever you want with newValue
// If newValue is not valid for your rules
((StringProperty)observable).setValue(oldValue);
// (! note 2 !) do not bind textProperty (textProperty().bind(someProperty))
// to anything in your code. TextProperty implementation
// of StringProperty in TextFieldControl
// will throw RuntimeException in this case on setValue(string) call.
// Or catch and handle this exception.
// If you want to change something in text
// When it is valid for you with some changes that can be automated.
// For example change it to upper case
((StringProperty)observable).setValue(newValue.toUpperCase());
}
);
あなたの場合は、このロジックを中に追加してください。完璧に動作します。
// For example 10 characters
if (newValue.length() >= 10) ((StringProperty)observable).setValue(oldValue);
以下のコードは、ユーザーが誤って入力を上書きしないようにカーソルを再配置します。
public static void setTextLimit(TextField textField, int length) {
textField.setOnKeyTyped(event -> {
String string = textField.getText();
if (string.length() > length) {
textField.setText(string.substring(0, length));
textField.positionCaret(string.length());
}
});
}