我想在ActionListener
类中使用以下代码。
MessageDigest digest = MessageDigest.getInstance("SHA-256");
byte[] hash = digest.digest(key.getBytes("UTF-8"));
BigInteger HashValue = new BigInteger(javax.xml.bind.DatatypeConverter.printHexBinary(hash).toLowerCase(), 16);
String HashValueString = HashValue.toString();
但"SHA-256"
和"UTF-8"
无法以任何方式导入。当我在控制台程序中执行此操作时,我可以使用以下方法解决此问题:
public static void main(String[] args) throws NoSuchAlgorithmException, UnsupportedEncodingException
但我不能参加ActionListener
课程。我该如何解决这个问题?
答案 0 :(得分:1)
您事先知道MessageDigest.getInstance("SHA-256")
和key.getBytes("UTF-8")
会成功,因此最佳解决方案是围绕不可检查的例外情况包装try-catch:
try {
MessageDigest digest = MessageDigest.getInstance("SHA-256");
byte[] hash = digest.digest(key.getBytes("UTF-8"));
BigInteger HashValue = new BigInteger(javax.xml.bind.DatatypeConverter.printHexBinary(hash).toLowerCase(), 16);
String HashValueString = HashValue.toString();
// ... The rest of your code goes here ....
} catch (NoSuchAlgorithmException e) {
throw new AssertionError(e);
} catch (UnsupportedEncodingException e) {
throw new AssertionError(e);
}
现在使用此代码,您不会根据合同要求在throws
方法上声明ActionListener
。