我正在尝试开发一个系统,要求用户在JTextBox(plainText)中输入文本,然后点击键JButton(key_128),然后它将加密用户文本并在另一个JTextBox中显示输出( encryptedtext)。代码现在要求用户输入密钥。我如何在JButton(key_128)中将其更改为静态值
byte[] plain = plaintext.getText().getBytes();
byte[] K = time_128.getText().getBytes();
byte[] encrypted = encrypt(plain, K);
String a = new String(bytesToHex(encrypted));
encryptedtext.setText(a);