未报告的异常java.lang.exception:必须被捕获或声明为throw。 为什么会出现这个问题?这是一种有助于解决这个问题的简单方法吗?
我将此代码应用于我的java ..
public byte[] encrypt(String message) throws Exception {
MessageDigest md = MessageDigest.getInstance("md5");
byte[] digestOfPassword = md.digest("ABCDEABCDE"
.getBytes("utf-8"));
byte[] keyBytes = Arrays.copyOf(digestOfPassword, 24);
for (int j = 0, k = 16; j < 8;) {
keyBytes[k++] = keyBytes[j++];
}
SecretKey key = new SecretKeySpec(keyBytes, "DESede");
IvParameterSpec iv = new IvParameterSpec(new byte[8]);
Cipher cipher = Cipher.getInstance("DESede/CBC/PKCS5Padding");
cipher.init(Cipher.ENCRYPT_MODE, key, iv);
byte[] plainTextBytes = message.getBytes("utf-8");
byte[] cipherText = cipher.doFinal(plainTextBytes);
// String encodedCipherText = new sun.misc.BASE64Encoder()
// .encode(cipherText);
return cipherText;
}
public String decrypt(byte[] message) throws Exception {
MessageDigest md = MessageDigest.getInstance("md5");
byte[] digestOfPassword = md.digest("ABCDEABCDE"
.getBytes("utf-8"));
byte[] keyBytes = Arrays.copyOf(digestOfPassword, 24);
for (int j = 0, k = 16; j < 8;) {
keyBytes[k++] = keyBytes[j++];
}
SecretKey key = new SecretKeySpec(keyBytes, "DESede");
IvParameterSpec iv = new IvParameterSpec(new byte[8]);
Cipher decipher = Cipher.getInstance("DESede/CBC/PKCS5Padding");
decipher.init(Cipher.DECRYPT_MODE, key, iv);
byte[] plainText = decipher.doFinal(message);
return new String(plainText, "UTF-8");
}
错误显示在下面的部分
中byte[] pass = encrypt(password);
String pw = new String(pass);
有什么想法吗? 我使用java netbeans来做我的项目..
答案 0 :(得分:4)
您的encrypt()
方法会抛出Exception
。这意味着,在您调用此方法的地方,您应该明确地抛出此Exception
或使用try-catch
块处理它。
在您的情况下,对于此特定代码:
byte[] pass = encrypt(password);
String pw = new String(pass);
您应该将其括在:
中try{
byte[] pass = encrypt(password);
String pw = new String(pass);
}catch(Exception exe){
//Your error handling code
}
或声明此代码附加throws Exception
的方法。
如果您不熟悉异常处理,请考虑阅读:Lesson: Exceptions from the Java Tutorials
答案 1 :(得分:0)
1。 有两种方法可以处理异常。
- Either `declare` it
- or `Handle` it.
上面的 2。 encrypt()
方法会引发异常
所以要么在你调用它的方法声明中声明它。
<强>例如强>
public void MyCallingMethod() throws Exception{
byte[] pass = encrypt(password);
String pw = new String(pass);
}
或处理 try/catch
阻止, finally
是可选的
try{
byte[] pass = encrypt(password);
String pw = new String(pass);
}catch(Exception ex){
}