In *nix I just do ps -ef | grep java to see the jvm args and classpath of an executing java program. How can I see it in windows command prompt? I want to see if ce
ps -ef | grep java
From the command line I would use
jinfo < pid >
which will give you this information and more