有没有一种简单的方法可以将多行文本连接成一个字符串,而无需不断添加换行符? [英] Is there an easy way to concatenate several lines of text into a string without constantly appending a newline?

查看:22
本文介绍了有没有一种简单的方法可以将多行文本连接成一个字符串,而无需不断添加换行符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以我基本上需要这样做:

So I essentially need to do this:

String text = "line1
";
text += "line2
";
text += "line3
";
useString( text );

涉及的内容更多,但这是基本思想.有没有什么可以让我在这方面做更多的事情?

There is more involved, but that's the basic idea. Is there anything out there that might let me do something more along the lines of this though?

DesiredStringThinger text = new DesiredStringThinger();
text.append( "line1" );
text.append( "line2" );
text.append( "line3" );
useString( text.toString() );

显然,它不需要完全那样工作,但我想我明白了基本点.总是可以选择编写一个自己处理文本的循环,但是如果有一个标准的 Java 类已经做了这样的事情,而不是我需要在应用程序之间携带一个类,这样我就可以了做些微不足道的事.

Obviously, it does not need to work exactly like that, but I think I get the basic point across. There is always the option of writing a loop which processes the text myself, but it would be nice if there is a standard Java class out there that already does something like this rather than me needing to carry a class around between applications just so I can do something so trivial.

谢谢!

推荐答案

您可以使用 StringWriter 包裹在 PrintWriter:

You can use a StringWriter wrapped in a PrintWriter:

StringWriter stringWriter = new StringWriter();
PrintWriter writer = new PrintWriter(stringWriter, true);
writer.println("line1");
writer.println("line2");
writer.println("line3");
useString(stringWriter.toString());

这篇关于有没有一种简单的方法可以将多行文本连接成一个字符串,而无需不断添加换行符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆