是否有一个内置函数可以从 a 中删除最后一个字符JTextField
,或者是将字符串设置为删除最后一个字符的新字符串的唯一方法?
JTextField textfield = new JTextField(sometext);
// What I'm looking for
textfield.removeLastCharacter();
// What I'm using
char[] text = textfield.getText().toCharArray();
String string = "";
for (int i = 0; i < text.length - 1; i++) string += text[i];
textfield.setText(string);