웹개발/Java & Jsp
[Jsp] textarea 텍스트 줄 바꿈 엔터 jsp jstl/java
kmhan
2023. 10. 26. 13:33
728x90
반응형
1. JSP JSTL
1
2
3
4
5
6
7
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%
pageContext.setAttribute("crcn", "\n");
pageContext.setAttribute("br", "<br/>");
%>
<c:out value="${fn:replace(내용, crcn, br)" />
|
cs |
2. Java
728x90
반응형