idea2024 cannot collect jvm options,What is this problem?

已回答
0

Hi there,

Could be because of non-ASCII chars in the file path (e.g. https://youtrack.jetbrains.com/issue/IJPL-156417 )

Or maybe it's something of this kind: https://youtrack.jetbrains.com/issue/IJPL-159819

0

Indeed, it seems like happens due to non-ASCII chars in path to the .vmoptions file. Try to move the IDE installation itself to a different location on a hard drive without non-ASCII chars, and all IDE System / Plugins / Logs / Config directories as well as described here: https://intellij-support.jetbrains.com/hc/en-us/articles/207240985-Changing-IDE-default-directories-used-for-config-plugins-and-caches-storage 

Related part:

Follow the comments in IDE_HOME\bin\idea.properties file to change the defaults, make sure to uncomment the lines defining these properties:

  • idea.config.path
  • idea.system.path
  • idea.plugins.path
  • idea.log.path

Example:

idea.config.path=c:/work/idea/caches/trunk-config
idea.system.path=c:/work/idea/caches/trunk-system
idea.plugins.path=c:/work/idea/caches/trunk-plugins

 

0

请先登录再写评论。