如何从REST调用返回格式化字符串?

时间:2017-04-03 20:31:24

标签: rest spring-mvc

如何创建Restful Web服务,该服务将在Windows控制台中显示为多行结果。

我尝试了以下操作,但它将\ r \ n显示为字符串字符而不是换行符。也尝试了\ n,0x0A,似乎没有任何效果。

@RequestMapping(value="/fetchMultiLine.do", method = RequestMethod.GET)
public String fetchMultiLine(HttpServletRequest request) {
   return "Lines:\r\nfirst\r\nsecond\r\netc"
}

它总是将新行字符解释为字符串字符并显示:

Lines:\r\nfirst\r\nsecond\r\netc

当我真的想要

Lines:
first
second
etc

有什么希望吗?

0 个答案:

没有答案