[ 사용방법 ]
1. 클래스 하나만 디컴파일시example1.class 를 디컴파일시
jad.exe 를 디컴파일할 파일과 동일한 폴더에 놓는다.
Command 창에 jad -o -sjava example1.class
결과물 : 'example1.java'
2. Package 를 디컴파일시
tree 폴더 아래의 모든 클래스파일을 디컴파일시
폴더와 같은 폴더에 jad.exe 를 위치하고
Command 창에 jad -o -r -sjava -dsrc tree/**/*.class
결과물 : 폴더내에 [src] 폴더가 생성된다.