반응형
org.unbescape에 대한 Maven Update 또는 Jar파일 다운로드 필요
https://mvnrepository.com/artifact/org.unbescape/unbescape/1.1.6.RELEASE
pom.xml
<dependency>
<groupId>org.unbescape</groupId>
<artifactId>unbescape</artifactId>
<version>1.1.6.RELEASE</version>
</dependency>
사용방법
import org.unbescape.html.HtmlEscape; //호출
HtmlEscape.unescapeHtml(String형태);
Ex) HtmlEscape.unescapeHtml("&& " ' '");
결과: && " ' '
반응형
'JAVA' 카테고리의 다른 글
[JAVA] 날짜 FOR문 (0) | 2023.02.05 |
---|---|
[JAVA] user agent 브라우저/버전 정보 확인 (0) | 2019.11.20 |
[JAVA] iBatis / MyBatis 차이 (변경사항) (0) | 2019.11.20 |
[JAVA] ModelAndView 기본형식 (0) | 2019.11.13 |
[JAVA] MVC패턴 redirect 전달방법 (0) | 2019.11.13 |