Hello rance,
There's a couple steps to it. First you have to extract the contents from the jar file to see the .class files, then run the .class files through a decompiler to see the Java Code.
For Step 1 this link will help:
http://docs.oracle.com/javase/tutorial/deployment/jar/unpack.htmlFor Step 2 this link will help:
http://java.decompiler.free.fr/?q=jdguiI've utilized Java Decompiler in the past and it's worked great.
Kris