- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Link
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
드럼치는 프로그래머
[XML] xml nbsp 처리 문제 본문
xml 에서는 를 처리 하지 못한다.
구글링해본결과는
" " is an HTML entity. XML only knows three entities: "<" ">" "&"
Therefore all other characters that you need must be with their char code, as you have found with " ".
아래와 같이 처리 하면 해결된다.
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE xsl:stylesheet [ <!ENTITY nbsp " "> ]>
<xsl:text disable-output-escaping="yes">& </xsl:text>
<mall>
<test><하하하>fjslf&공백 입니다.</test>
</mall>
'★─Programing > ☆─WebProgram' 카테고리의 다른 글
[Spring] 스프링과 Tiles 2 (0) | 2016.05.18 |
---|---|
[JSTL] <c:out> <c:set> <c:remove> <c:catch> 태그 (0) | 2016.05.16 |
[MyBatis] 쿼리 파라미터 null 처리방법 (0) | 2016.05.16 |
[MyBatis] Mapper XML File 이란? (0) | 2016.04.28 |
[HTML] HTML 특수문자표, ( 숫자표현,문자표현 ) 코드표 (0) | 2013.05.06 |
Comments