Eclipse won't open in Linux Mint and Java won't open in different directories

喜夏-厌秋 提交于 2019-12-05 22:03:14

In the file eclipse.ini remove the line --add-modules=ALL-SYSTEM.

In Java 9 the Java Platform Module System was introduced which encapsulate most internal APIs. The --add-modules=ALL-SYSTEM is a Java 9 virtual machine (VM) argument to make it behave like before Java 9.

See JEP 261: Module System:

As a further special case at run time, if is ALL-SYSTEM then all system modules are added to the root set, whether or not they are in the default set. This is sometimes needed by test harnesses. This option will cause many modules to be resolved; in general, ALL-DEFAULT should be preferred.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!