Exception in thread "main" java.lang.SecurityException: JCE cannot authenticate the provider NUIMCSCGIBE
at javax.crypto.Cipher.getInstance(DashoA13*..)
at ibetest.test.main(test.java:21)
Caused by: java.util.jar.JarException: Cannot parse file:/F:/java/test/bin/
at javax.crypto.SunJCE_c.a(DashoA13*..)
at javax.crypto.SunJCE_b.b(DashoA13*..)
at javax.crypto.SunJCE_b.a(DashoA13*..)

解决方案 »

  1.   

    If your ant environment is placing the "BC" provider on the java bootclasspath, you'll get an error like this. Either place it on the regular class path, or the extension class path if you'd like it to have all permissions. In general, randomly placing things on the bootclasspath is not a great idea.At least in JDK 5, you should see a chained error like this:Caused by: java.util.jar.JarException: Class is on the bootclasspath找到这个, 不知道要怎么操作