I want to be able to identify an exception at a running Java code without attaching a debugger. For a simple example, if I have the following code:
int i = 0;
Random rand = new Random();
while (true)
{
i++;
int number = rand.nextInt(1000);
if (number == 20)
throw new Exception("Error!!!");
}
How can I know the value of "i" at the time of the exception throw? (without attaching any debuggers or adding log/print entries).
My motivation is that I want to be able to identify a problem at a customer site without attaching any debuggers to the production site.
If Someone was asking the same question using .Net or C++ I could get the value of "i" using Windbg and the relevant PDBs
Thanks!
iwill be probably 0. Just sayin'. – Thomas Jungblut Sep 19 '11 at 12:35