xmlbean使用总结
发布时间:2021-06-07
发布时间:2021-06-07
用于生成xml实体bean
1. 项目中要用的一下的XML数据格式:
<?xml version="1.0" encoding="UTF-8"?>
<data>
2. XML确定以后XMLbean对xml进行解析,首先得配置XMLBEAN的地址设置:配置环境变
量
1) 把xmlbean的bin加到PATH中 <photo> <path> http://192.168.1.6:8080/OTCHallWeb/files/newswall/01.jpg </path> <title>胡主席参观</title> <desc>2011年9月22日,胡锦涛主席参观留念</desc> </photo> <photo> <path> http://192.168.1.6:8080/OTCHallWeb/files/newswall/02.jpg </path> <title>湖南省政府参观</title> <desc>2012年2月12日,湖南省政府主席参观体验厅留念</desc> </photo> </data>
2) 将xmlbean的lib下的xbean.jar加到classpath下,重新导入path。
输入:scomp如果有信息,则表示xmlbean环境配置成功
3. XMLBean对该xml解析时则需要对应的xsd的(xml的schme文件)例如:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="/2001/XMLSchema" elementFormDefault="qualified">
<xs:element name="data">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" ref="photo"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="photo">
<xs:complexType>
<xs:sequence>
<xs:element ref="path"/>
<xs:element ref="title"/>
<xs:element ref="desc"/>
</xs:sequence>
下一篇:论纳兰性德词