What needs to be done so that a banner with such an inscription does not fly out?
Error: could not find Java SE Runtime Environment.
Error: Could not find the Java SE runtime.
Maybe in Java itself, in the settings, you need to uncheck it somewhere?
What needs to be done so that a banner with such an inscription does not fly out?
Error: could not find Java SE Runtime Environment.
Error: Could not find the Java SE runtime.
Maybe in Java itself, in the settings, you need to uncheck it somewhere?
As far as I understand the question, is the Java applet not displayed in the browser?
JDK is not needed for displaying applets (it is needed for developing applications), respectively, no environment variables like PATH and JAVA_HOME are needed.
You need to download from the official site and install the latest version of the JRE
http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html
After installing the JRE applets should run in IE and Firefox without problems. (if this does not happen, then the JRE is installed incorrectly) in chrome, starting from version 42, NPAPI is disabled by default, to enable it, go to the chrome://flags/#enable-npapi tab chrome://flags/#enable-npapi And under Enable NPAPI, click Enable . After rebooting the browser, everything should work.
Source: https://ru.stackoverflow.com/questions/425648/
All Articles