正确缩进 Java/Kotlin 控制台输出

我正在向控制台输出大量信息,这些信息是通过多个嵌套调用收集的。我希望能够以可读的方式在屏幕上打印信息,但我似乎无法正确缩进,而不对数字进行硬编码\t。


基本上,我怎样才能让我的代码根据上一行的缩进级别进行缩进。如果上一行缩进\t并且我执行“\n\t”,那么之后,我希望新行相对于上一行缩进。意思是我希望像


String str = "original line (no indention)"

+ "\n"

+ "\t originally indented line"

+ "\n"

+ "\t the second indented line"


输出是


original line (no indention)

    originally indented line

    the second indented line

但我希望它是


original line (no indention)

    originally indented line

         the second indented line

请记住,在我的实际代码中,每个缩进级别都是来自不同文件的聚合结果,因此很难只知道在第二行缩进两次。我需要它能够简单地根据前一行的缩进进行缩进,这样我就不必对缩进级别进行硬编码。


蓝山帝景
浏览 133回答 2
2回答

偶然的你

我建议创建一个迷你类来帮助你。这样您就可以跟踪已经进行了多少缩进。您可以在当前使用的类中添加以下代码:public static class Indent{&nbsp; &nbsp; private static int numIndents = 0;&nbsp; &nbsp; public static String addIndent(String textToIndent){&nbsp; &nbsp; &nbsp; &nbsp; numIndents++;&nbsp; &nbsp; &nbsp; &nbsp; for(int i = 0; i < numIndents; i++){&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; textToIndent = "\t" + textToIndent;&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; &nbsp; return textToIndent;&nbsp; &nbsp; }}然后您可以执行以下操作:String str = "original line (no indention)"+ Indent.addIndent("originally indented line")&nbsp;+ Indent.addIndent("second indented line");这样一来,您实际上根本不需要打字\t。

达令说

结束了,在每次迭代期间替换每条新行\n,\n\t这似乎起到了作用。太疯狂了,我看了这么简单的解决方案。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java