Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

When I compile a class using javax.crypto.Mac I get this error message?

package javax.crypto does not exist

I can fix it by including jre/lib/jce.jar in my compile classpath.

Why is jce.jar not on the default jdk classpath? jre/lib/rt.jar is on the classpath, and includes other javax packages, but jce seems special?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
692 views
Welcome To Ask or Share your Answers For Others

1 Answer

OK, this was a mistake on my part. The Ant file I was using to compile the code had this attribute on the javac task:

bootclasspath="${java.home}/lib/rt.jar" 

Doh. You can add the JCE jar like this:

bootclasspath="${java.home}/lib/rt.jar:${java.home}/lib/jce.jar"

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...