XML 中转义的特殊字符

特殊字符 描述 转义后的形式
& (Ampersand) 实体引用起始符号 &
< (Less Than) 元素标签开始符号 &lt;
> (Greater Than) 元素标签结束符号 &gt;
" (双引号) 用于属性值包围的符号 &quot;
' (单引号) 在某些情况下用于属性值包围(非必须转义,但推荐) '

举例展示:

原始文本 转义后文本
<example> &lt;example&gt;
"Hello World!" &quot;Hello World!&quot;
'This is a test.' 'This is a test.''
This & that This &amp; that
相关推荐
乌夷3 天前
在pom.xml中通过repositories在Maven构建过程中访问setting.xml之外的仓库
xml·java·maven
振宇i3 天前
Mybatis xml动态SQL 判断失效问题
xml·sql·mybatis
程序员老王wd5 天前
java xml 文本解析
xml·java
小百菜6 天前
dom4j解析含有命名空间的XML
xml·dom4j
黎明晓月7 天前
MyBatis XML一个方法执行插入或更新操做(PostgreSQL)
xml·postgresql·mybatis
GoKu~7 天前
项目配置文件选择(Json,xml,Yaml, INI)
xml·json
枫叶落雨2227 天前
mybatis-plus: mapper-locations: “classpath*:/mapper/**/*.xml“配置!!!解释
xml·java·mybatis
double丶flower7 天前
mybatis在mapper.xml中怎么处理大于、小于、不等于号
xml·java·mybatis
一只爱打拳的程序猿7 天前
pom.xml和spring-config.xml
xml·java·spring
tonysh_zds7 天前
freemarker 读取template.xml ,通过response 输出文件,解决中文乱码问题
xml·java·开发语言