1

私はdoPostサーブレットにいます-

protected void doPost(HttpServletRequest request,
            HttpServletResponse response) throws ServletException, IOException {

        request.getSession().setAttribute("sysMsg","now we gonna to break line \n");

        // forward to printLine.jsp page 
            dispather.forward(request, response) ; 
    }

そしてjspページ(言う、、printLine.jsp) -

<html>
<head>
<title></title>
</head>
<body>
    <font size="30" color="Red">${sysMsg} </font>
</body>
</html>

私は最終的に行を改行printLine.jspの印刷でそれをしたい... そのため、サーブレットに彼を設定したときに最後に入れましたが、この方法ではうまくいきませんでした。sysMsg\nsysMsg

4

1 に答える 1

4

<br/>代わりに試す

request.getSession().setAttribute("sysMsg","now we gonna to break line <br/>");
于 2012-08-09T18:34:59.000 に答える