I'm new to java. JAR files installed. That's what happened. Tell me where the .dll library files need to be inserted?

Download files GL4java.png.jar , gl4java.jar , gl4java-glutfonts.jar and gl4java-glffonts.jar placed in the JAVA_HOME\lib\ext folder.
Dll files must be placed in C:\Windows\System or C:\Windows\System32 depending on the version of Windows.
Next, you need to set permissions for GL4java. Open the JAVA_HOME\lib\security\java.policy and add the line there
grant codeBase "file:${java.home}/lib/ext/*" { permission java.security.AllPermission; } From myself I’ll add that you may have to register dll files (or you may not have to). In the command line you need to type
regsvr32 “C:/Windows/System32/example.dll” Source: https://ru.stackoverflow.com/questions/100552/
All Articles