idea中遇到问题解决办法

idea中遇到的问题:
Error running ‘Application’
Command line is too long. In order to reduce its length classpath file can be used.
Would you like to enable classpath file mode for all run configurations of your project?

解决办法:
需要修改.idea/workspace.xml

<component name="PropertiesComponent">
    <property name="last_opened_file_path" value="$PROJECT_DIR$/../acpp-po" />
    <property name="dynamic.classpath" value="true" />
  </component>

把dynamic.classpath改为false

猜你喜欢

转载自blog.csdn.net/lvjingwn/article/details/78059788