idea中遇到问题解决办法

来源:互联网 发布:骏飞竞拍系统源码 编辑:程序博客网 时间:2024/05/19 23:29

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

阅读全文
0 0