我试图使用\ n创建一个字符串列表,但是每当我添加多个字符串时,该字符串都会缩进到前一个字符串的位置,因此示例输出为:

0 hello nain
            1 test nain
                       2 huh nain


我不知道为什么要这么做。这是我创建字符串的代码:

            String[] posts = currentTopic.getMessages("main");
            //String[] postsOutput = new String[posts.length];
            String postsOutput = "0 " + posts[0];

            for(int i = 1; i < posts.length; i++){
                postsOutput += "\n" + i + " " + posts[i];
                //postsOutput[i] = i + posts[i];
            }

            sc.close();
            return postsOutput;


我还尝试将\ n移到附加内容的末尾,但结果仍然相同。任何帮助,将不胜感激。

谢谢

最佳答案

尝试\ r \ n,即回车和换行符。

07-24 22:04