OK I ran my app through Jprobe and am a little confused about a few things. I am wondering that if I have a while loop that calls StringBuffer.indexOf() a ton of times how come the jprobe count is so low?
You can view an html of jprobe results sorted by amount of calls here http://www.kommi.com/mostcalls.html
Also if you look at the amount of time sort here http://www.kommi.com/mostcalls.html, you will notice that the 4 main methods take up a lion share of the time, but all those methods are loops that constantly search massive Stringbuffer ojects. I also have lots of my own Objects being instanced all the time. How come non of those things appear? How an I missinterperting the JProbe result set?