Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 제이쿼리
- 초단위
- 만들면서 배우는 클린 아키텍처
- 엔티티 코드 치환
- for문
- js
- jQuery
- architecture
- catalina.out
- Tomcat
- 정규식
- Linux
- docker 컨테이너로 띄우기
- insert
- select
- 톰캣
- mysql
- Java
- javascript
- 리눅스
- aws elasticache 활용
- springboot+redis
- 특수문자 치환
- Stack
- 자바
- 자바스크립트
- Docker Compose
- redis + spring boot 함께
- sftp
- Entity Code 치환
Archives
- Today
- Total
목록특수문자 치환 (1)
꾸준하게, 차근차근

import org.apache.commons.lang3.StringEscapeUtils; public void changeHtml() { // 특수문자를 Entity Code로 치환 String str = "&&&&"; str = StringEscapeUtils.escapeHtml4(str); // Entity Code를 특수문자로 치환 String entityStr = "&&&&"; entityStr = StringEscapeUtils.unescapeHtml4(entityStr); } 🙏 참조 :: https://kudolove.tistory.com/m/1350 https://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang..
Java
2021. 9. 11. 01:47