在我的代码中,我尝试设置Preferences
。我有两个输入字段:JTextField
和JPasswordField
。 JPasswordField
可以正常工作,但是JTextField
不会将首选项信息保留在内存中,而是复制密码信息。
import java.util.prefs.Preferences;
import javax.swing.*;
public class TestJP {
public static Preferences userPreferences = Preferences.userRoot();
public final static String LOGIN_KEY = "";
public final static String PASSWORD_KEY = "";
public static void main(String[] args) {
JTextField login = new JTextField(20);
login.setText(userPreferences.get(LOGIN_KEY, ""));
JPasswordField password = new JPasswordField(20);
password.setText(userPreferences.get(PASSWORD_KEY, ""));
JPanel myPanel = new JPanel();
myPanel.add(new JLabel("login:"));
myPanel.add(login);
myPanel.add(Box.createHorizontalStrut(15));
myPanel.add(new JLabel("password:"));
myPanel.add(password);
int result = JOptionPane.showConfirmDialog(null, myPanel,
"Please Login", JOptionPane.OK_CANCEL_OPTION);
if (result == JOptionPane.OK_OPTION) {
userPreferences.put(LOGIN_KEY,login.getText());
userPreferences.put(PASSWORD_KEY, password.getText());
}
}
}
JPasswordField
是否会以某种方式覆盖JTextField
? 最佳答案
您的键都是空字符串。它们需要是唯一的字符串。
之前:
public final static String LOGIN_KEY = "";
public final static String PASSWORD_KEY = "";
新:
public final static String LOGIN_KEY = "login_key";
public final static String PASSWORD_KEY = "password_key";
关于java - Java首选项JTextField和JPasswordField问题?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17887694/