Monday, August 20, 2007

Utility for determining which files a program is using

The Process Explorer for Windows is a utility for determining which files an application is currently using. This can come in handy especially when you are trying to delete a file but cannot because some process is still using it. I highly recommend it. Below is the URL:


http://www.microsoft.com/technet/sysinternals/Utilities/ProcessExplorer.mspx

Friday, August 17, 2007

JVM parameters to use a debugger for Java

Below are the JVM arguements that can be used to allow a debugger to connect to your Java application

-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=port

Labels: