Java Decompiler

22

A simple way to see what String literals are used in a ".class" file is to use the javap utility in your JDK installation to dump the file using the "-v" option. Then grep for text that looks like <String "..."> where ... is the String you are looking for.
Shavarsh Shahoyan