How would you recognize a java process (as java process) in runtime
from outside the JVM? (win32)
is there a nicer way than monitorizing DLL loads in order to detect
the jvm.dll/javai.dll load?
Oliver Wong - 13 Jul 2007 18:14 GMT
> How would you recognize a java process (as java process) in runtime
> from outside the JVM? (win32)
>
> is there a nicer way than monitorizing DLL loads in order to detect
> the jvm.dll/javai.dll load?
The name of the process is almost always "java.exe" or "javaw.exe".
- Oliver
David Gourley - 13 Jul 2007 21:41 GMT
> How would you recognize a java process (as java process) in runtime
> from outside the JVM? (win32)
>
> is there a nicer way than monitorizing DLL loads in order to detect
> the jvm.dll/javai.dll load?
Download jps tool? (certainly works with Java 1.5 on win32)
Dave