써먹는 웹개발

[Jsp] textarea 텍스트 줄 바꿈 엔터 jsp jstl/java 본문

웹개발/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

1
내용.replaceAll(System.getProperty("line.separator"), "<br>");
cs

 

출처 : https://zeuz.tistory.com/11

728x90
반응형


Comments