System.out.print() doesn't send any output to Eclipse console. Why?

后端 未结 4 788
旧时难觅i
旧时难觅i 2020-12-07 00:39

I have next java class:

public class Test {

    public static void main(String args[]) {

        for (int i = 0; i < 1448; i++) {
            System.out         


        
4条回答
  •  佛祖请我去吃肉
    2020-12-07 01:03

    According to this, Eclipse does indeed restrict the size of its output buffer.

    Of course, you can change this behaviour:

    Go to Window > Preferences > Run/Debug > Console and un-check Limit console output; or you can provide any number of characters between 1000 to 1000000.

    Edit: It does not seem to fix your problem though.

提交回复
热议问题