英文:
Eclipse Started Randomly Printing Hundreds of Blank/Empty Lines to Console
问题
因为某种奇怪的原因,Eclipse开始随机向控制台打印数百行空行。我不知道这是否与此有关,但我最近添加了YourKit插件。我相信这是自从出现这个问题以来我对Eclipse唯一的修改。
我已经从我的程序中几乎删除了所有的System.out.println()语句,以查看这是否与此有关,但问题仍然存在。Eclipse仍然向控制台打印数百行空行。
可能是什么原因导致了这个问题?
英文:
For some odd reason Eclipse started printing hundreds of empty lines to console randomly. I don't know if this has anything to do with it, but I recently added YourKit plugin. I believe this was the only modification I made to Eclipse since this started happening.
I've removed virtually all System.out.println() statements from my program, to see if this has anything to do with it, but the problem still persists. Eclipse still prints hundreds of empty lines to console.
What might be the cause of this issue?
答案1
得分: 2
这是一个Eclipse的错误。可能是由于控制台输出限制引起的。
> 有时可能是不可见的字符。
尝试复制这些空行并粘贴到一些文本编辑器中以检查字符。
在你的设置中检查控制台输出限制。
Windows->Preferences->Run/Debug->Console
。然后取消选中限制控制台输出
。
英文:
It is an Eclipse bug. It maybe because of console output limit.
> Sometimes it can be characters that are not visible.
See if you can copy those blank lines and paste it in some text editors to check for characters.
Check for console output limit in your settings.
Windows->Preferences->Run/Debug->Console
. And uncheck limit console output
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论