本文介绍了如何在IntelliJ IDEA控制台输出中隐藏命令行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是intellij IDE的新手,正在尝试执行一个类文件,当我在intellij中执行java类文件时遇到以下问题
I am new to intellij IDE and trying to execute a class file and i have following issue when i execute java class file in intellij
"C:\Program Files\Java\jdk-13.0.1\bin\java.exe" "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2019.3\lib\idea_rt.jar=56791:C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2019.3\bin" -Dfile.encoding=UTF-8 -classpath "C:\Users\satis\Desktop\Automation Framework\KarateSeries\target\classes" HelloWorld
Hellow World
如何摆脱我的intellij输出中的位置
How to get rid of the locations in my intellij output
推荐答案
在文件中添加 java.exe
|设置|编辑器一般|控制台,折叠包含的控制台行.
Add java.exe
at File | Settings | Editor | General | Console, Fold console lines that contain.
IDE将折叠命令行,并且分散注意力.
IDE will collapse the command line and it will be less distracting.
目前无法将其完全隐藏,您可以对相关功能请求进行投票:
It's not possible to hide it completely at the moment, you can vote for the related feature request:
- IDEA-188173 一种新选项可关闭在控制台中查看折叠的代码
- IDEA-188173 A new option to turn off viewing folded code in Console
这篇关于如何在IntelliJ IDEA控制台输出中隐藏命令行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!