如何创建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
有什么希望吗?