error running command line is too long
时间: 2023-11-29 19:44:29 浏览: 85
解决Intellij IDEA运行报Command line is too long的问题
当启动命令过长时,会出现"error running command line is too long"的错误。解决方案如下:
1. 在工程文件.idea目录下找到workspace.xml,找到PropertiesComponent并添加代码行<property name="dynamic.classpath" value="true" />或者"dynamic.classpath":"true",然后保存。
2. 打开Edit Configurations,点击Modify options设置,勾选Shorten command line,然后在Edit Configurations界面下方新增的Shorten command line选项中选择JAR manifest或classpath file,最后保存并执行程序即可。
阅读全文