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

后端 未结 4 779
旧时难觅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 00:58

    Right click on in console -> Preferences... -> check Fixed width console. Now you have auto word wrap and everything shows ok. Seems like Eclipse console have a limit on number of characters displayed in one line.

提交回复
热议问题