Thursday, February 19, 2009

Java Decompiler

You sometimes do not have to sourcecode of an application which you want to analyse in that worst case story you can use java decompiler to analyse a code which is already compiled.

http://java.decompiler.free.fr/

Friday, February 6, 2009

Analysing a legacy source code

you can use following commands in cygwin:

find . -type f -name *.java
cat javafilelist.txt |xargs grep hibernate |cut -d":" -f1 | uniq | grep -v router | wc

LinkWithin

Related Posts Plugin for WordPress, Blogger...