1

我有一些代码bouncycastle会产生异常,但即使我用 try catch 包围,catch 语句仍然会给我这个错误:

  incompatible types
  required: java.lang.Throwable
  found:    org.bouncycastle.crypto.DataLengthException

这是我的代码:

int decryptedLength;
try {
      decryptedLength = cipher.processBytes(cipherBytes, 0, cipherBytes.length,     decryptedBytes, 0);
    } catch (DataLengthException ex) {
    }

catch 语句不接受异常,如何解决?

4

1 回答 1

3

我更改了项目名称,没有更多错误。我正在使用 Netbeans (7.3)。我希望这将帮助某人避免浪费时间寻找不存在的问题的解决方案。

于 2012-05-24T11:22:04.077 回答