Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一些输入是Soap请求的单元测试。我的请求长度至少为 80 行,当我将其复制到 Eclipse 中进行单元测试时,它不会附加+ "到每个新行中。(我以前工作过IDEA,用它来很好地格式化它,我只需要注意转义双引号)。有没有更好的方法来做到这一点,而不是手动附加 + 然后将每一行括在双引号中。
Soap
+ "
IDEA
我认为File I/O对于单元测试来说使用太多了。
File I/O
当您将代码粘贴到 Eclipse 中的字符串中时,您可以自动插入特殊字符,请参阅Window Preferences->Java->Editor->Typing->Escape text when pasting into a string literal
Window Preferences->Java->Editor->Typing->Escape text when pasting into a string literal
粘贴
foo bar baz
进入
String s = "";
给
String s = "foo\n" + "bar\n" + "baz";