在页面 xhtml 上显示字符串

Display string on page xhtml

我有这个代码:

if (comparingList.size()<3)
{

return "text1" + "text2" + "text3 ";

}

我想在页面 *.xhtml 上以这种样式显示此文本:

text1 text2
text3

我该怎么做?

很简单!你必须改变这个 return "text1" + "text2" + "text3 ";
到这个return "text1" + "text2<br/>" + "text3 ";