如何在java中为JButton类型字节数组赋值

时间:2018-03-25 07:21:44

标签: java user-interface encryption

我正在尝试开发一个系统,要求用户在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);

0 个答案:

没有答案