"JDK_1.8" platform could not be found | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

"JDK_1.8" platform could not be found

I searched on google and found this : https://stackoverflow.com/questions/16887253/netbeans-broken-platform platform.active=default_platform platforms.default_platform.home=${java.home}/../ I replace : platform.active=JDK_1.8 I changed the text to be like this : platform.active=default_platform I don't understand what this means: platforms.default_platform.home=${java.home}/../ Do I have to add that text under platform.active=default_platform ? I don't understand the meaning of /. . / What should I write there?

12th Jun 2023, 11:42 PM
Nasywa
1 Answer
+ 4
Having /../ in the path indicates that the next location in the hierarchy is relatively up one level from the current folder. In other words, the folder is one level back (or up) from wherever the environment variable ${java.home} points to. It is a way to navigate to the folder that contains ${java.home} without knowing where it is.
13th Jun 2023, 3:02 AM
Brian
Brian - avatar