これは@Eng.Fouadの提案の例です(どうぞ、彼の功績です)。
基本的に、これにより、テキストフィールドに入力されたすべてのテキストがランダムな文字に置き換えられます。
マップされた変更(たとえばa = 1
)や暗号化プロセスを提供するためにコードを更新することは難しくありません。
public class TestPhasicDocumentFilter {
public static void main(String[] args) {
new TestPhasicDocumentFilter();
}
public TestPhasicDocumentFilter() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
}
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
frame.add(new PhasicPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
public class PhasicPane extends JPanel {
public PhasicPane() {
setLayout(new GridBagLayout());
JTextField field = new JTextField(12);
add(field);
((AbstractDocument)field.getDocument()).setDocumentFilter(new PhasicDocumentFilter());
}
public class PhasicDocumentFilter extends DocumentFilter {
protected String phasic(String text) {
StringBuilder sb = new StringBuilder(text);
for (int index = 0; index < sb.length(); index++) {
sb.setCharAt(index, (char)(33 + (int)Math.round(Math.random() * 93)));
}
return sb.toString();
}
@Override
public void insertString(FilterBypass fb, int offset, String text, AttributeSet attr) throws BadLocationException {
super.insertString(fb, offset, phasic(text), attr);
}
@Override
public void replace(FilterBypass fb, int offset, int length, String text, AttributeSet attrs) throws BadLocationException {
super.replace(fb, offset, length, phasic(text), attrs);
}
}
}
}