Java: hasJREfinishedInitialization() - how to check if jre has finished loading/initializing all cor
Posted
by Tom
on Stack Overflow
See other posts from Stack Overflow
or by Tom
Published on 2010-04-22T16:42:14Z
Indexed on
2010/04/22
17:03 UTC
Read the original article
Hit count: 237
Is there a way to check if all boot (core) java classes (belonging to the Java Runtime Environment) have been loaded/initialized for use in Java?
I need to check this in a rare situation where I have have access to the JRE but not to the actual application, so I cannot simply wait for the main application to run and execute from that point on.
© Stack Overflow or respective owner